diff --git a/NadekoBot.Core/Modules/Gambling/Gambling.cs b/NadekoBot.Core/Modules/Gambling/Gambling.cs index c6a05aa0..8a70d855 100644 --- a/NadekoBot.Core/Modules/Gambling/Gambling.cs +++ b/NadekoBot.Core/Modules/Gambling/Gambling.cs @@ -278,7 +278,7 @@ namespace NadekoBot.Modules.Gambling // }); // return Task.CompletedTask; //} - public enum Allin { Allin, All } + public enum Allin { Allin = int.MinValue, All = int.MinValue } private async Task InternallBetroll(long amount) { diff --git a/NadekoBot.Core/Modules/Gambling/WheelOfFortuneCommands.cs b/NadekoBot.Core/Modules/Gambling/WheelOfFortuneCommands.cs index e8047008..eb4bf99f 100644 --- a/NadekoBot.Core/Modules/Gambling/WheelOfFortuneCommands.cs +++ b/NadekoBot.Core/Modules/Gambling/WheelOfFortuneCommands.cs @@ -25,7 +25,7 @@ namespace NadekoBot.Modules.Gambling _db = db; } - public enum Allin { Allin, All } + public enum Allin { Allin = int.MinValue, All = int.MinValue } [NadekoCommand, Usage, Description, Aliases] public Task WheelOfFortune(Allin _)