From 1d6626a8ec481624cc5d6b5b0fcf741cd780b802 Mon Sep 17 00:00:00 2001 From: Spookerton <918997+Spookerton@users.noreply.github.com> Date: Wed, 11 Oct 2023 16:57:37 +0300 Subject: [PATCH] [MIRROR] fix high speed floor people --- code/modules/mob/living/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/life.dm b/code/modules/mob/living/life.dm index 996bf78175cdc..2c6263ef7ec19 100644 --- a/code/modules/mob/living/life.dm +++ b/code/modules/mob/living/life.dm @@ -132,7 +132,7 @@ handle_impaired_hearing() /mob/living/proc/handle_confused() - confused-- + confused = max(confused - 1, 0) return confused /mob/living/proc/handle_impaired_vision()