From bec21da0cd004f8fb922557fc9b8cd16dcd7b5e3 Mon Sep 17 00:00:00 2001 From: ccomp5950 Date: Wed, 12 Nov 2014 23:37:25 -0500 Subject: [PATCH] AI's no longer able to use specop's shuttle console. Keeps naughty AI's from launching it early. --- code/modules/shuttles/shuttle_specops.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/modules/shuttles/shuttle_specops.dm b/code/modules/shuttles/shuttle_specops.dm index 9bad8d0cb4..244dc4450f 100644 --- a/code/modules/shuttles/shuttle_specops.dm +++ b/code/modules/shuttles/shuttle_specops.dm @@ -3,6 +3,10 @@ shuttle_tag = "Special Operations" req_access = list(access_cent_specops) +/obj/machinery/computer/shuttle_control/specops/attack_ai(user as mob) + user << "\red Access Denied." + return 1 + //for shuttles that may use a different docking port at each location /datum/shuttle/ferry/multidock var/docking_controller_tag_station @@ -35,6 +39,7 @@ if(announcer) announcer.autosay(message, "A.L.I.C.E.", "Response Team") + /datum/shuttle/ferry/multidock/specops/launch(var/user) if (!can_launch()) return @@ -199,4 +204,4 @@ spawn(0) M.close() special_ops.readyreset()//Reset firealarm after the team launched. - //End Marauder launchpad. \ No newline at end of file + //End Marauder launchpad.