From 5ef7fdd0c019d1a4abcc9cc01275d7cc66619d9a Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Wed, 21 Oct 2020 18:06:20 -0400 Subject: [PATCH] Gives syndicate consoles syndicate bubbles (#14661) --- code/game/machinery/computer/depot.dm | 1 + code/game/machinery/computer/syndicate_specops_shuttle.dm | 1 + code/modules/mob/living/silicon/decoy/decoy.dm | 1 + code/modules/shuttle/syndicate.dm | 6 ++++++ 4 files changed, 9 insertions(+) diff --git a/code/game/machinery/computer/depot.dm b/code/game/machinery/computer/depot.dm index f2e89923eb4..bb70fe6ecf5 100644 --- a/code/game/machinery/computer/depot.dm +++ b/code/game/machinery/computer/depot.dm @@ -13,6 +13,7 @@ icon_screen = "tcboss" light_color = LIGHT_COLOR_PURE_CYAN req_access = list(ACCESS_SYNDICATE) + bubble_icon = "syndibot" var/security_lockout = FALSE var/sound_yes = 'sound/machines/twobeep.ogg' var/sound_no = 'sound/machines/buzz-sigh.ogg' diff --git a/code/game/machinery/computer/syndicate_specops_shuttle.dm b/code/game/machinery/computer/syndicate_specops_shuttle.dm index 7ec7bd7a026..f25c95ec42f 100644 --- a/code/game/machinery/computer/syndicate_specops_shuttle.dm +++ b/code/game/machinery/computer/syndicate_specops_shuttle.dm @@ -17,6 +17,7 @@ GLOBAL_VAR_INIT(syndicate_elite_shuttle_timeleft, 0) icon_screen = "syndishuttle" light_color = LIGHT_COLOR_PURE_CYAN req_access = list(ACCESS_SYNDICATE) + bubble_icon = "syndibot" var/temp = null var/hacked = 0 var/allowedtocall = 0 diff --git a/code/modules/mob/living/silicon/decoy/decoy.dm b/code/modules/mob/living/silicon/decoy/decoy.dm index 2c47482c3f0..6f2314cdee2 100644 --- a/code/modules/mob/living/silicon/decoy/decoy.dm +++ b/code/modules/mob/living/silicon/decoy/decoy.dm @@ -24,6 +24,7 @@ /mob/living/silicon/decoy/syndicate faction = list("syndicate") + bubble_icon = "syndibot" name = "R.O.D.G.E.R" desc = "Red Operations, Depot General Emission Regulator" icon_state = "ai-magma" diff --git a/code/modules/shuttle/syndicate.dm b/code/modules/shuttle/syndicate.dm index 1ff2959ff08..53373441b05 100644 --- a/code/modules/shuttle/syndicate.dm +++ b/code/modules/shuttle/syndicate.dm @@ -5,6 +5,7 @@ icon_screen = "syndishuttle" icon_keyboard = "syndie_key" req_access = list(ACCESS_SYNDICATE) + bubble_icon = "syndibot" circuit = /obj/item/circuitboard/shuttle/syndicate shuttleId = "syndicate" possible_destinations = "syndicate_away;syndicate_z5;syndicate_z3;syndicate_ne;syndicate_nw;syndicate_n;syndicate_se;syndicate_sw;syndicate_s;syndicate_custom" @@ -46,6 +47,7 @@ icon_keyboard = "syndie_key" icon_screen = "syndishuttle" req_access = list(ACCESS_SYNDICATE) + bubble_icon = "syndibot" shuttleId = "sst" possible_destinations = "sst_home;sst_away;sst_custom" resistance_flags = INDESTRUCTIBLE @@ -56,6 +58,7 @@ icon_keyboard = "syndie_key" icon_screen = "syndishuttle" req_access = list(ACCESS_SYNDICATE) + bubble_icon = "syndibot" shuttleId = "sit" possible_destinations = "sit_arrivals;sit_engshuttle;sit_away;sit_custom" resistance_flags = INDESTRUCTIBLE @@ -67,6 +70,7 @@ icon_keyboard = "syndie_key" shuttleId = "syndicate" shuttlePortId = "syndicate_custom" + bubble_icon = "syndibot" view_range = 13 x_offset = -5 y_offset = -1 @@ -78,6 +82,7 @@ desc = "Used to designate a precise transit location for the SST shuttle." shuttleId = "sst" shuttlePortId = "sst_custom" + bubble_icon = "syndibot" view_range = 13 x_offset = 0 y_offset = 0 @@ -87,6 +92,7 @@ desc = "Used to designate a precise transit location for the SIT shuttle." shuttleId = "sit" shuttlePortId = "sit_custom" + bubble_icon = "syndibot" view_range = 13 x_offset = 0 y_offset = 0