From 7c24f99d61307beec66b96ffb6b7720a965a92dc Mon Sep 17 00:00:00 2001 From: Swag McYolosteinen Date: Sat, 2 Aug 2014 18:53:01 +0200 Subject: [PATCH] Stops slot machines from eating coins. --- code/game/machinery/slotmachine.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/slotmachine.dm b/code/game/machinery/slotmachine.dm index 940c3132422..8a252a39b8a 100644 --- a/code/game/machinery/slotmachine.dm +++ b/code/game/machinery/slotmachine.dm @@ -100,7 +100,7 @@ spark_system.start() playsound(src.loc, "sparks", 50, 1) - else + else if(!balance) //to prevent coins from magically disappearing ..() /obj/machinery/computer/slot_machine/attack_hand(mob/living/user)