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!"))