From 5ac40c0d91cbd1a5c60477493f2be97da75d8f20 Mon Sep 17 00:00:00 2001 From: Casey Date: Sat, 12 Mar 2022 23:48:41 -0500 Subject: [PATCH] Merge pull request #12432 from Very-Soft/miningshuttles Allow borgs to interact with tether and SD mining shuttles --- code/modules/shuttles/shuttles_vr.dm | 1 + maps/stellardelight/stellar_delight_shuttle_defs.dm | 2 ++ maps/tether/tether_shuttles.dm | 1 + 3 files changed, 4 insertions(+) diff --git a/code/modules/shuttles/shuttles_vr.dm b/code/modules/shuttles/shuttles_vr.dm index 7582e37ae7..58143b9950 100644 --- a/code/modules/shuttles/shuttles_vr.dm +++ b/code/modules/shuttles/shuttles_vr.dm @@ -34,6 +34,7 @@ name = "belter control console" req_one_access = list(access_mining, access_medical_equip) //Allows xenoarch, miners AND doctors to use it. shuttle_tag = "Belter" //The scanning console needs to enable/disable this at will. + ai_control = TRUE /obj/machinery/computer/shuttle_control/mining name = "mining elevator control console" diff --git a/maps/stellardelight/stellar_delight_shuttle_defs.dm b/maps/stellardelight/stellar_delight_shuttle_defs.dm index 0e4998c1f7..eeb66ad19d 100644 --- a/maps/stellardelight/stellar_delight_shuttle_defs.dm +++ b/maps/stellardelight/stellar_delight_shuttle_defs.dm @@ -58,6 +58,7 @@ name = "boat control console" shuttle_tag = "Exploration Shuttle" req_one_access = null + ai_control = TRUE // A shuttle lateloader landmark /obj/effect/shuttle_landmark/shuttle_initializer/exploration @@ -84,6 +85,7 @@ name = "boat control console" shuttle_tag = "Mining Shuttle" req_one_access = null + ai_control = TRUE // A shuttle lateloader landmark /obj/effect/shuttle_landmark/shuttle_initializer/mining diff --git a/maps/tether/tether_shuttles.dm b/maps/tether/tether_shuttles.dm index 280a5c355e..27caa00596 100644 --- a/maps/tether/tether_shuttles.dm +++ b/maps/tether/tether_shuttles.dm @@ -37,6 +37,7 @@ name = "surface mining outpost shuttle control console" shuttle_tag = "Mining Outpost" req_one_access = list(access_mining) + ai_control = TRUE // // "Tram" Emergency Shuttler // Becuase the tram only has its own doors and no corresponding station doors, a docking controller is overkill.