diff --git a/NadekoBot/Classes/FlowersHandler.cs b/NadekoBot/Classes/FlowersHandler.cs index f05ce474..86e4086b 100644 --- a/NadekoBot/Classes/FlowersHandler.cs +++ b/NadekoBot/Classes/FlowersHandler.cs @@ -21,11 +21,8 @@ namespace NadekoBot.Classes if (silent) return; - var flows = ""; - for (var i = 0; i < amount; i++) - { - flows += NadekoBot.Config.CurrencySign; - } + var flows = amount +" " + NadekoBot.Config.CurrencySign; + await u.SendMessage("đŸ‘‘Congratulations!đŸ‘‘\nYou received: " + flows).ConfigureAwait(false); } diff --git a/NadekoBot/Modules/Gambling/GamblingModule.cs b/NadekoBot/Modules/Gambling/GamblingModule.cs index ae8c1cf0..24e32377 100644 --- a/NadekoBot/Modules/Gambling/GamblingModule.cs +++ b/NadekoBot/Modules/Gambling/GamblingModule.cs @@ -122,11 +122,7 @@ namespace NadekoBot.Modules.Gambling return async e => { var pts = GetUserFlowers(e.User.Id); - var str = $"`You have {pts} {NadekoBot.Config.CurrencyName}s".SnPl((int)pts) + "`\n"; - for (var i = 0; i < pts; i++) - { - str += NadekoBot.Config.CurrencySign; - } + var str = $"`You have {pts} {NadekoBot.Config.CurrencySign}"; await e.Channel.SendMessage(str).ConfigureAwait(false); }; }