From 470ac6b162c84fe7b7bbbc8e5871bf0aa9407d48 Mon Sep 17 00:00:00 2001 From: LT3 <83487515+lessthnthree@users.noreply.github.com> Date: Tue, 6 May 2025 19:13:35 -0700 Subject: [PATCH] Removes hallucination on hunger/mood (#3731) ## About The Pull Request Disables the mob hallucination caused by low hunger/mood ## Why It's Good For The Game Having this status effect adds an annoyance and food is not readily available. ## Changelog :cl: LT3 del: Removed hallucinations caused by high hunger/low mood /:cl: --- code/datums/mood.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/datums/mood.dm b/code/datums/mood.dm index 9d4ba4393c6..b3fc4e536dc 100644 --- a/code/datums/mood.dm +++ b/code/datums/mood.dm @@ -615,11 +615,15 @@ mob_parent.add_actionspeed_modifier(/datum/actionspeed_modifier/high_sanity) sanity_level = SANITY_LEVEL_GREAT + // BUBBER EDIT REMOVAL BEGIN - No hallucination on hunger/sanity + /* // Crazy or insane = add some uncommon hallucinations if(sanity_level >= SANITY_LEVEL_CRAZY) mob_parent.apply_status_effect(/datum/status_effect/hallucination/sanity) else mob_parent.remove_status_effect(/datum/status_effect/hallucination/sanity) + */ + // BUBBER EDIT REMOVAL END - No hallucination on hunger/sanity update_mood_icon()