From 4603f9e563d89b364bf5a45329ab6e0ea99ee861 Mon Sep 17 00:00:00 2001 From: tofa01 Date: Sat, 18 Feb 2017 15:18:01 +1100 Subject: [PATCH] Makes centcomm ferry look for centcomm general access instead of require admin permission every time. --- code/modules/shuttle/ferry.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/shuttle/ferry.dm b/code/modules/shuttle/ferry.dm index 0ebc8ef0436..0c3ffd5fa69 100644 --- a/code/modules/shuttle/ferry.dm +++ b/code/modules/shuttle/ferry.dm @@ -3,15 +3,15 @@ circuit = /obj/item/weapon/circuitboard/computer/ferry shuttleId = "ferry" possible_destinations = "ferry_home;ferry_away" - + req_access = list(access_cent_general) /obj/machinery/computer/shuttle/ferry/request name = "ferry console" circuit = /obj/item/weapon/circuitboard/computer/ferry/request var/last_request //prevents spamming admins var/cooldown = 600 - possible_destinations = "ferry_home" - admin_controlled = 1 + possible_destinations = "ferry_home;ferry_away" + req_access = list(access_cent_general) resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF /obj/machinery/computer/shuttle/ferry/request/Topic(href, href_list)