From 0b90273a91ea2bfae0c4c1379be8b1f5e5b6ef4f Mon Sep 17 00:00:00 2001 From: NovaBot <154629622+NovaBot13@users.noreply.github.com> Date: Sun, 14 Apr 2024 10:44:51 -0400 Subject: [PATCH] [MIRROR] cyborgs know door, APC, and other wires (not cyborg wires) (#1973) * cyborgs know door, APC, and other wires (not cyborg wires) (#82477) ## About The Pull Request This gives cyborgs a trait at roundstart that makes them know the wires around the station, just like engineers. ## Why It's Good For The Game Cyborgs should know the wires just as well as the engineers; simple as that. ## Changelog Cyborgs know which door wires they're looking at now. :cl: Bisar qol: Cyborgs now understand door and APC wires at a glance, among others /:cl: * cyborgs know door, APC, and other wires (not cyborg wires) --------- Co-authored-by: Joshua Kidder <49173900+Metekillot@users.noreply.github.com> --- code/modules/mob/living/silicon/robot/robot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index e1b2abe78cb..e3785085aad 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -3,7 +3,7 @@ spark_system.set_up(5, 0, src) spark_system.attach(src) - add_traits(list(TRAIT_CAN_STRIP, TRAIT_FORCED_STANDING), INNATE_TRAIT) + add_traits(list(TRAIT_CAN_STRIP, TRAIT_FORCED_STANDING, TRAIT_KNOW_ENGI_WIRES), INNATE_TRAIT) AddComponent(/datum/component/tippable, \ tip_time = 3 SECONDS, \ untip_time = 2 SECONDS, \