Copy fixes

This commit is contained in:
Joseph Ferano 2022-06-12 23:00:11 +07:00
parent 3e23a6af6f
commit e5a2e4e6df

View File

@ -276,11 +276,11 @@ let checkHasRequiredInvites storeItem player =
let embed = DiscordEmbedBuilder()
embed.Description <- $"""
**Degen**, cant you **READ**?!
⚠️ **__Entry Requirements:__** 1x Invited User
⚠️ **__Entry Requirements:__** {amount}x Invited User
To Enter this Raffle you must have **__INVITED__** 1 Degen.
To Enter this Raffle you must have **__INVITED__** {amount} Degen.
☑️ Go to <#{GuildEnvironment.channelRecruitment}>
☑️ Invite just 1 Degen!
☑️ Invite just {amount} Degen!
Then try again
"""
@ -299,6 +299,7 @@ let checkHasRequiredRole storeItem (user : DiscordMember) =
Ok ()
else
let embed = DiscordEmbedBuilder()
if roleId = GuildEnvironment.roleMagicEden then
embed.Description <- $"""
**Degen**, cant you **READ**?!
⚠️ **__Entry Requirements:__** Have the <@&{GuildEnvironment.roleMagicEden}>
@ -307,6 +308,12 @@ To get the <@&{GuildEnvironment.roleMagicEden}> role:
☑️ Upvote us on magic here: https://magiceden.io/drops/degenz_game
☑️ Post Proof in <#{GuildEnvironment.channelQuestProof}>
Then try again"""
else
embed.Description <- $"""
**Degen**, cant you **READ**?!
⚠️ **__Entry Requirements:__** Have the <@&{roleId}>
Then try again
"""
DiscordFollowupMessageBuilder()