From aadcd6db701404e606eed6e89731f53273eb6887 Mon Sep 17 00:00:00 2001 From: Felipe Maya Muniz <67922105+gnai-creator@users.noreply.github.com> Date: Sat, 28 Jun 2025 15:42:43 -0300 Subject: [PATCH] fix: Withdraw should have positive amount to work (#2221) --- Projects/UOContent/Mobiles/Townfolk/Banker.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/UOContent/Mobiles/Townfolk/Banker.cs b/Projects/UOContent/Mobiles/Townfolk/Banker.cs index 7bb0c5bd6..7744c1918 100644 --- a/Projects/UOContent/Mobiles/Townfolk/Banker.cs +++ b/Projects/UOContent/Mobiles/Townfolk/Banker.cs @@ -380,7 +380,7 @@ public partial class Banker : BaseVendor { Say(1048147); // Your backpack can't hold anything else. } - else if (amount <= 0) + else if (amount > 0) { if (!Withdraw(e.Mobile, amount)) {