From 852cccf94a6225d007bc67d14d3e742a4f1502ba Mon Sep 17 00:00:00 2001 From: Walter0o Date: Sun, 10 Aug 2014 02:07:13 +0200 Subject: [PATCH] fixes tele-comp not checking power on initialize() prevents exploiting the computer back on while area power is off --- code/game/machinery/teleporter.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/machinery/teleporter.dm b/code/game/machinery/teleporter.dm index f9bc8d879b..b247f17919 100644 --- a/code/game/machinery/teleporter.dm +++ b/code/game/machinery/teleporter.dm @@ -17,6 +17,7 @@ return /obj/machinery/computer/teleporter/initialize() + ..() var/obj/machinery/teleport/station/station = locate(/obj/machinery/teleport/station, get_step(src, dir)) var/obj/machinery/teleport/hub/hub if(station)