From ef9f9cb60a1ee0a83037eeb6f75d9a48d23bc204 Mon Sep 17 00:00:00 2001 From: ynot01 Date: Fri, 24 Feb 2023 20:49:38 -0500 Subject: [PATCH] Update flash.dm --- 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 4d0fa1f102f1..04057d6042db 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.Paralyze(rand(20,30)) + if(M.IsParalyzed() || M.IsKnockdown()) + M.Knockdown(rand(20,30)) else - M.Paralyze(rand(80,120)) + M.Knockdown(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!"))