Merge pull request #6418 from Citadel-Station-13/upstream-merge-37215
[MIRROR] fixes borgs being able to control the CentCom ferry
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
possible_destinations = "ferry_home;ferry_away"
|
possible_destinations = "ferry_home;ferry_away"
|
||||||
req_access = list(ACCESS_CENT_GENERAL)
|
req_access = list(ACCESS_CENT_GENERAL)
|
||||||
|
|
||||||
var/aiControlDisabled = TRUE
|
var/allow_silicons = FALSE
|
||||||
var/allow_emag = FALSE
|
var/allow_emag = FALSE
|
||||||
|
|
||||||
/obj/machinery/computer/shuttle/ferry/emag_act(mob/user)
|
/obj/machinery/computer/shuttle/ferry/emag_act(mob/user)
|
||||||
@@ -16,7 +16,10 @@
|
|||||||
return ..()
|
return ..()
|
||||||
|
|
||||||
/obj/machinery/computer/shuttle/ferry/attack_ai()
|
/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
|
/obj/machinery/computer/shuttle/ferry/request
|
||||||
name = "ferry console"
|
name = "ferry console"
|
||||||
|
|||||||
Reference in New Issue
Block a user