From bf6169085869917386793e204711a37278198f68 Mon Sep 17 00:00:00 2001 From: Shadow Date: Sun, 1 Sep 2019 12:43:29 -0500 Subject: [PATCH] Foxes ATM withdrawls --- code/modules/economy/ATM.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/modules/economy/ATM.dm b/code/modules/economy/ATM.dm index 595eace858e..e0dd80a1e6e 100644 --- a/code/modules/economy/ATM.dm +++ b/code/modules/economy/ATM.dm @@ -240,9 +240,7 @@ log transactions if(amount > 10000) // prevent crashes to_chat(usr, "The ATM's screen flashes, 'Maximum single withdrawl limit reached, defaulting to 10,000.'") amount = 10000 - authenticated_account.money -= amount withdraw_arbitrary_sum(amount) - authenticated_account.charge(amount, null, "Credit withdrawal", machine_id, authenticated_account.owner_name) else to_chat(usr, "[bicon(src)]You don't have enough funds to do that!")