fix: Withdraw should have positive amount to work (#2221)
This commit is contained in:
parent
a37481ea93
commit
aadcd6db70
1 changed files with 1 additions and 1 deletions
|
|
@ -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))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue