From 23756fd8e2c5c8335dfdfd6570cd9a52f16f9d00 Mon Sep 17 00:00:00 2001 From: MistakeNot4892 Date: Wed, 17 Jan 2024 23:51:24 +1100 Subject: [PATCH] Animals can now get high, as god intended. --- .../mob/living/simple_mob/subtypes/animal/animal.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/animal.dm b/code/modules/mob/living/simple_mob/subtypes/animal/animal.dm index cd4fe3e5662..cd292024161 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/animal.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/animal.dm @@ -49,6 +49,13 @@ /mob/living/simple_mob/animal/leaves_tracks_type() return tracks_type + +/mob/living/simple_mob/animal/handle_regular_hud_updates() + if(!client) + return FALSE + . = ..() + set_fullscreen(druggy, "high", /obj/screen/fullscreen/high) + /mob/living/simple_mob/animal/proc/has_appetite() return TRUE