diff --git a/Bot/Embeds.fs b/Bot/Embeds.fs index b0efa86..62e7540 100644 --- a/Bot/Embeds.fs +++ b/Bot/Embeds.fs @@ -181,7 +181,8 @@ let getAchievementEmbed (player : PlayerData) description achievement = embed.WithTitle("Achievement Unlocked!") .WithDescription(description) .WithColor(DiscordColor.Gold) - .AddField("Achievement", achievement) +// .AddField("Achievement", $"🏆 {achievement}") + .AddField("Achievement", $"{achievement}") // TODO: Once we add another achievement, fix this .WithImageUrl("https://s10.gifyu.com/images/MasterTraining_Degenz.gif")) .AsEphemeral(true) \ No newline at end of file diff --git a/Bot/Trainer.fs b/Bot/Trainer.fs index 5427d46..f46f15f 100644 --- a/Bot/Trainer.fs +++ b/Bot/Trainer.fs @@ -10,9 +10,6 @@ open Degenz.Messaging let trainerAchievement = "FINISHED_TRAINER" -// TODO: We should either gift the weapons to the player during training, or have them buy it -// TODO: We should tell the user to type out /arsenal during the training -// TODO: How do we handle the money being generated here? It's fake but fake is confusing let defaultHack = Armory.battleItems |> Array.find (fun i -> i.Id = int HackId.Virus) let defaultShield = Armory.battleItems |> Array.find (fun i -> i.Id = int ShieldId.Encryption) @@ -230,7 +227,7 @@ let handleArsenal (ctx : InteractionContext) = do! ctx.Member.RevokeRoleAsync(role) |> Async.AwaitTask - do! sendFollowUpMessageFromCtx ctx "Now get out of there and go hack other Degenz!" + do! sendFollowUpMessageFromCtx ctx $"Now get out of there and go hack other Degenz in the <#{GuildEnvironment.channelBattle}> channel!" }) let handleButtonEvent (event : ComponentInteractionCreateEventArgs) =