From c2b255cdca7925e77fa4d91c4ba52ee3ecd81cef Mon Sep 17 00:00:00 2001 From: Roxy <75404941+TealSeer@users.noreply.github.com> Date: Sat, 22 Feb 2025 04:44:37 -0600 Subject: [PATCH] Add air alarm wire knowledge to the Engineer skillchip (#89587) ## About The Pull Request Add air alarm wires to the list of things that the engineer skillchip gives you knowledge of ## Why It's Good For The Game Engineers have access to air alarms so there's no real problem with them knowing these, and it's helpful for fixing them. ## Changelog :cl: qol: air alarm wires are now labeled if you have the engineering skillchip /:cl: --- code/datums/wires/airalarm.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/datums/wires/airalarm.dm b/code/datums/wires/airalarm.dm index 00291609871..d99954acfa1 100644 --- a/code/datums/wires/airalarm.dm +++ b/code/datums/wires/airalarm.dm @@ -73,3 +73,9 @@ A.update_appearance() if(WIRE_SPEAKER) A.speaker_enabled = mend + +/datum/wires/airalarm/can_reveal_wires(mob/user) + if(HAS_TRAIT(user, TRAIT_KNOW_ENGI_WIRES)) + return TRUE + + return ..()