From 42e2aa7dcebd6c71e7abfd532b2288875f457cc2 Mon Sep 17 00:00:00 2001 From: SteelSlayer Date: Sun, 8 Dec 2019 02:54:30 -0600 Subject: [PATCH] typo --- code/modules/mob/living/status_procs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/status_procs.dm b/code/modules/mob/living/status_procs.dm index 28cdc17afeb..7beb722ae2e 100644 --- a/code/modules/mob/living/status_procs.dm +++ b/code/modules/mob/living/status_procs.dm @@ -344,7 +344,7 @@ return SetSleeping(max(sleeping, amount), updating, no_alert) /mob/living/SetSleeping(amount, updating = 1, no_alert = FALSE) - if(frozen) // If the mob has been admin frozen, sleeping should not be changable + if(frozen) // If the mob has been admin frozen, sleeping should not be changeable return FALSE . = STATUS_UPDATE_STAT if((!!amount) == (!!sleeping)) // We're not changing from + to 0 or vice versa