Various changes ¯\_(ツ)_/¯

Summary of Changes:
- Betroll won't give you the greater than 90 bonus for rolling 90
anymore
- Send usage updated for clarity
- I missed some stuff when the  `config.json` stopped having "null"
everywhere, this fixes it, *I think.*
- more whitespacing in the linux guide for people like Kwoth who want to
just be able to copy paste commands

- I'm kinda just guessing this'll work so if it doesn't then, "woopsie"
This commit is contained in:
Jordan Fearnley
2016-11-11 00:54:53 +00:00
parent 8c39c33eba
commit 5c32062b2f
5 changed files with 21 additions and 15 deletions

View File

@@ -204,7 +204,7 @@ namespace NadekoBot.Modules.Gambling
{
str += "More luck next time.";
}
else if (rng < 90)
else if (rng < 91)
{
str += $"Congratulations! You won {amount * 2}{Gambling.CurrencySign} for rolling above 66";
await CurrencyHandler.AddCurrencyAsync(guildUser, "Betroll Gamble", amount * 2, false).ConfigureAwait(false);