From 03fcb9e1394bca3242f11bd24c462989b7fd91ce Mon Sep 17 00:00:00 2001 From: Xhuis Date: Fri, 20 Mar 2015 07:23:59 -0400 Subject: [PATCH] Makes the machine less deadly to non-users --- code/game/machinery/computer/arcade.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/computer/arcade.dm b/code/game/machinery/computer/arcade.dm index e45106f03d8..4709f25103d 100644 --- a/code/game/machinery/computer/arcade.dm +++ b/code/game/machinery/computer/arcade.dm @@ -382,8 +382,8 @@ if(emagged) user << "You're never going to make it to Orion..." user.death() - sleep(30) emagged = 0 //removes the emagged status after you lose + playing = 0 //also a new game name = "The Orion Trail" desc = "Learn how our ancestors got to Orion, and have fun in the process!" @@ -561,6 +561,7 @@ src.visible_message("A miniature black hole suddenly appears in front of [src], devouring [usr] alive!") usr.Stun(10) //you can't run :^) var/S = new /obj/singularity/academy(usr.loc) + emagged = 0 //immediately removes emagged status so people can't kill themselves by sprinting up and interacting sleep(50) src.visible_message("[S] winks out, just as suddenly as it appeared.") qdel(S)