From aeb375b4ce9199b50e971c59a645de43f71d51c1 Mon Sep 17 00:00:00 2001 From: Fira Date: Thu, 9 Nov 2023 23:26:52 +0000 Subject: [PATCH] add missing handler --- code/modules/mob/living/living.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index ecc9bb5aef53..79ce8d87dfa9 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -585,6 +585,10 @@ else if(layer == initial(layer)) //to avoid things like hiding larvas. layer = LYING_LIVING_MOB_LAYER +/// Called when mob changes from a standing position into a prone while lacking the ability to stand up at the moment. +/mob/living/proc/on_fall() + return + /// Changes the value of the [living/body_position] variable. Call this before set_lying_angle() /mob/living/proc/set_body_position(new_value) if(body_position == new_value)