From 2829f3a22dc2f6f629b5cb69e39d8639baf803d8 Mon Sep 17 00:00:00 2001 From: SatinIsle Date: Sun, 1 Dec 2024 20:13:15 +0000 Subject: [PATCH] Allows pAI's to wake up Fixed pAI's getting stuck in sleep forever if they used the sleep verb. --- code/modules/mob/living/silicon/pai/life.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/silicon/pai/life.dm b/code/modules/mob/living/silicon/pai/life.dm index c506924923c..683c1ffac8e 100644 --- a/code/modules/mob/living/silicon/pai/life.dm +++ b/code/modules/mob/living/silicon/pai/life.dm @@ -34,6 +34,7 @@ to_chat(src, span_green("Communication circuit reinitialized. Speech and messaging functionality restored.")) handle_statuses() + handle_sleeping() if(health <= 0) card.death_damage()