mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
Revert this.
This commit is contained in:
parent
3128a6493f
commit
20cbfe0f62
1 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ class DistributedBankAI(DistributedFurnitureItemAI):
|
|||
if av.bankMoney + amount < 0:
|
||||
self.air.writeServerEvent('suspicious', avId=avId, issue='Toon tried to withdraw more money than they have!')
|
||||
else:
|
||||
av.b_setMoney(av.money + amount)
|
||||
av.b_setBankMoney(av.bankMoney - amount)
|
||||
av.b_setMoney(av.money - amount)
|
||||
av.b_setBankMoney(av.bankMoney + amount)
|
||||
|
||||
self.avId = None
|
||||
|
|
Loading…
Reference in a new issue