fix: Withdraw should have positive amount to work (#2221)

This commit is contained in:
Felipe Maya Muniz 2025-06-28 15:42:43 -03:00 committed by GitHub
parent a37481ea93
commit aadcd6db70
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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))
{