From 46e74f64f0cc5c628e6fc22de16615d619dacc26 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Sat, 11 Feb 2017 15:21:09 +0100 Subject: [PATCH] small waifu fix --- src/NadekoBot/Modules/Gambling/Commands/WaifuClaimCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Gambling/Commands/WaifuClaimCommands.cs b/src/NadekoBot/Modules/Gambling/Commands/WaifuClaimCommands.cs index f04ebda8..1d1f414f 100644 --- a/src/NadekoBot/Modules/Gambling/Commands/WaifuClaimCommands.cs +++ b/src/NadekoBot/Modules/Gambling/Commands/WaifuClaimCommands.cs @@ -110,7 +110,7 @@ namespace NadekoBot.Modules.Gambling result = WaifuClaimResult.Success; } } - else if (isAffinity && amount >= w.Price * 0.88f) + else if (isAffinity && amount > w.Price * 0.88f) { if (!await CurrencyHandler.RemoveCurrencyAsync(Context.User.Id, "Claimed Waifu", amount, uow).ConfigureAwait(false)) {