From 73b27768f3df72de18ce360404a653ba2a9f5f8a Mon Sep 17 00:00:00 2001 From: alex-gh Date: Thu, 22 Sep 2022 15:23:58 +0200 Subject: [PATCH] Fix runtimes with Rev malfunction ability (#19126) --- code/game/gamemodes/miniantags/revenant/revenant_abilities.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/gamemodes/miniantags/revenant/revenant_abilities.dm b/code/game/gamemodes/miniantags/revenant/revenant_abilities.dm index 87e5ba42628..0010af044a4 100644 --- a/code/game/gamemodes/miniantags/revenant/revenant_abilities.dm +++ b/code/game/gamemodes/miniantags/revenant/revenant_abilities.dm @@ -301,13 +301,13 @@ new /obj/effect/temp_visual/revenant(loc) locked = FALSE open = TRUE - emag_act(null) + emag_act(usr) /obj/rev_malfunction(cause_emp = TRUE) if(prob(20)) if(prob(50)) new /obj/effect/temp_visual/revenant(loc) - emag_act(null) + emag_act(usr) else if(cause_emp) emp_act(1)