From 65dbabab89408346474a49760fe41ce85a59e0ff Mon Sep 17 00:00:00 2001 From: FrozenGuy5 <31222036+praisenarsie@users.noreply.github.com> Date: Sat, 2 Dec 2017 14:43:46 +0000 Subject: [PATCH 1/2] Prevents the PA wires from being EMP'd (#33199) * returns emp_act * jordie for code owner --- code/datums/wires/particle_accelerator.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/datums/wires/particle_accelerator.dm b/code/datums/wires/particle_accelerator.dm index d38147f1ec..4bf49dd814 100644 --- a/code/datums/wires/particle_accelerator.dm +++ b/code/datums/wires/particle_accelerator.dm @@ -42,4 +42,7 @@ if(WIRE_LIMIT) C.strength_upper_limit = (mend ? 2 : 3) if(C.strength_upper_limit < C.strength) - C.remove_strength() \ No newline at end of file + C.remove_strength() + +/datum/wires/particle_accelerator/control_box/emp_pulse() // to prevent singulo from pulsing wires + return \ No newline at end of file