Merge pull request #269 from appelemac/patch-5
Non-spammy $$$ closes #267
This commit is contained in:
commit
eb50b82ce6
@ -21,11 +21,8 @@ namespace NadekoBot.Classes
|
|||||||
if (silent)
|
if (silent)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
var flows = "";
|
var flows = amount +" " + NadekoBot.Config.CurrencySign;
|
||||||
for (var i = 0; i < amount; i++)
|
|
||||||
{
|
|
||||||
flows += NadekoBot.Config.CurrencySign;
|
|
||||||
}
|
|
||||||
await u.SendMessage("👑Congratulations!👑\nYou received: " + flows).ConfigureAwait(false);
|
await u.SendMessage("👑Congratulations!👑\nYou received: " + flows).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -122,11 +122,7 @@ namespace NadekoBot.Modules.Gambling
|
|||||||
return async e =>
|
return async e =>
|
||||||
{
|
{
|
||||||
var pts = GetUserFlowers(e.User.Id);
|
var pts = GetUserFlowers(e.User.Id);
|
||||||
var str = $"`You have {pts} {NadekoBot.Config.CurrencyName}s".SnPl((int)pts) + "`\n";
|
var str = $"`You have {pts} {NadekoBot.Config.CurrencySign}";
|
||||||
for (var i = 0; i < pts; i++)
|
|
||||||
{
|
|
||||||
str += NadekoBot.Config.CurrencySign;
|
|
||||||
}
|
|
||||||
await e.Channel.SendMessage(str).ConfigureAwait(false);
|
await e.Channel.SendMessage(str).ConfigureAwait(false);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user