From 2a351ae84fb458fbada330b156db7249f359f6fd Mon Sep 17 00:00:00 2001 From: CharlesWedge <52897649+CharlesWedge@users.noreply.github.com> Date: Thu, 28 Nov 2024 14:51:13 -0600 Subject: [PATCH] Stop Dying Glacicorns (#6882) This will stop Glacicorns from randomly dying from heatstroke. ## CURSE YOU TEMP STABILIZATION Apparently when Lythios is at its warmest temperature stabilization warms up Glacicorns just enough to die of heatstroke. As simple mob temp stabilization will eventually be removed according to Silicons I am simply upping Glacicorn heat tolerance slightly. ## Changelog :cl: fix: Glacicorns should no longer die when Lythios gets a bit warm. /:cl: --- .../living/simple_mob/subtypes/animal/farm animals/lythios.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/lythios.dm b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/lythios.dm index f7ea1af10252..9bd45ee4dae3 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/lythios.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/lythios.dm @@ -25,7 +25,7 @@ iff_factions = MOB_IFF_FACTION_FARM_ANIMAL minbodytemp = 180 - maxbodytemp = 275 + maxbodytemp = 280 //Temp Stablization means that Glacicorns overheat when Lythios is warmest. health = 40 maxHealth = 40