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)