From be125358b34c5c2c68fba47d939e708ee8c7b930 Mon Sep 17 00:00:00 2001 From: Crazylemon64 Date: Fri, 14 Oct 2016 23:19:05 -0700 Subject: [PATCH] Adds update_canmove to mob.Sleep() --- code/modules/mob/living/status_procs.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/status_procs.dm b/code/modules/mob/living/status_procs.dm index 3b634b2920b..bc12dfdeb87 100644 --- a/code/modules/mob/living/status_procs.dm +++ b/code/modules/mob/living/status_procs.dm @@ -357,6 +357,7 @@ update_sleeping_effects() if(updating) update_stat() + update_canmove() /mob/living/AdjustSleeping(amount, bound_lower = 0, bound_upper = INFINITY, updating = 1) var/new_value = directional_bounded_sum(sleeping, amount, bound_lower, bound_upper)