From cb6f16f2c66546821c1cdfe5deb5443bc2417728 Mon Sep 17 00:00:00 2001 From: stwordcitizen <84217619+stwordcitizen@users.noreply.github.com> Date: Sun, 5 Mar 2023 19:09:11 -0800 Subject: [PATCH] Revert "Update flash.dm (#18072)" This reverts commit 29411c53e06c6ce15118b39e3ba09e755918384d. --- code/modules/assembly/flash.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/assembly/flash.dm b/code/modules/assembly/flash.dm index 04057d6042db..4d0fa1f102f1 100644 --- a/code/modules/assembly/flash.dm +++ b/code/modules/assembly/flash.dm @@ -148,10 +148,10 @@ trauma.on_flash(user, M) else to_chat(M, span_userdanger("You are blinded by [src]!")) - if(M.IsParalyzed() || M.IsKnockdown()) - M.Knockdown(rand(20,30)) + if(M.IsParalyzed()) + M.Paralyze(rand(20,30)) else - M.Knockdown(rand(80,120)) + M.Paralyze(rand(80,120)) else if(user) visible_message(span_disarm("[user] fails to blind [M] with the flash!")) to_chat(user, span_warning("You fail to blind [M] with the flash!"))