From afeae1e4462a366f57601a86556bb5a26e20aa81 Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Sun, 15 Apr 2018 13:21:37 +0300 Subject: [PATCH 1/2] fixes borgs being able to send the ferry --- code/modules/shuttle/ferry.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/shuttle/ferry.dm b/code/modules/shuttle/ferry.dm index c44cf69f95..f2d56686e0 100644 --- a/code/modules/shuttle/ferry.dm +++ b/code/modules/shuttle/ferry.dm @@ -6,7 +6,7 @@ possible_destinations = "ferry_home;ferry_away" req_access = list(ACCESS_CENT_GENERAL) - var/aiControlDisabled = TRUE + var/allow_silicons = FALSE var/allow_emag = FALSE /obj/machinery/computer/shuttle/ferry/emag_act(mob/user) @@ -16,7 +16,10 @@ return ..() /obj/machinery/computer/shuttle/ferry/attack_ai() - return aiControlDisabled? FALSE : ..() + return allow_silicons ? ..() : FALSE + +/obj/machinery/computer/shuttle/ferry/attack_robot() + return allow_silicons ? ..() : FALSE /obj/machinery/computer/shuttle/ferry/request name = "ferry console"