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

🆑 LT3
del: Removed hallucinations caused by high hunger/low mood
/🆑
This commit is contained in:
LT3
2025-05-06 19:13:35 -07:00
committed by GitHub
parent 633c0b5549
commit 470ac6b162
+4
View File
@@ -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()