From bc99165de6dace7bd300a0df7025680167f54a43 Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Mon, 21 Mar 2022 14:05:55 +0700 Subject: [PATCH] Spacing --- Bot/InviteTracker.fs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Bot/InviteTracker.fs b/Bot/InviteTracker.fs index 8d3e9a6..3258cae 100644 --- a/Bot/InviteTracker.fs +++ b/Bot/InviteTracker.fs @@ -134,8 +134,8 @@ let createGuildInvite (ctx : IDiscordContext) = let embed = DiscordEmbedBuilder() - .WithDescription($"**⏀ Your Mission:**\n`Copy this link` & share it with Degenz you want to `/recruit`.\n\n" + - $"**⌼ Your Reward:**\n`Earn {InviteRewardAmount} $GBT` 💰 for every Degen you've `/RECRUITED`." + + .WithDescription($"**⏀ | Your Mission:**\n`Copy this link` & share it with Degenz you want to `/recruit`.\n\n" + + $"**⌼ | Your Reward:**\n`Earn {InviteRewardAmount} $GBT` 💰 for every Degen you've `/recruited`." + $"```https://discord.gg/{invite.Code}```") .WithImageUrl("https://pbs.twimg.com/profile_banners/1449270642340089856/1640071520/1500x500") // .WithImageUrl("https://s7.gifyu.com/images/Resistance_Poster_Final_1.jpg") @@ -181,7 +181,7 @@ let getInvitedUsersForId (ctx : IDiscordContext) = task { let msg = let str = if users.Length > 0 then - $"**Total Recruited:**`{users.Length} Degenz`\n\n**Total Earned:** `{users.Length * InviteRewardAmount} 💰$GBT `\n\n**Last 10 users recruited:**\n{sb}" + $"**Total Recruited:** `{users.Length} Degenz`\n\n**Total Earned:** `{users.Length * InviteRewardAmount} 💰$GBT`\n\n**Last 10 users recruited:**\n{sb}" else $"You haven't recruited anyone yet, use the `/recruit` command to get the recruitment link" DiscordInteractionResponseBuilder()