This commit is contained in:
Joseph Ferano 2022-03-21 14:40:46 +07:00
parent 6606d28cbd
commit 037348cdad

View File

@ -10,7 +10,7 @@ open Degenz.Messaging
open Npgsql.FSharp
let connStr = GuildEnvironment.connectionString
let InviteRewardAmount = 50<GBT>
let InviteRewardAmount = 100<GBT>
type Invite = {
Code : string
@ -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**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()