diff --git a/code/modules/reagents/chemistry/reagents/alcohol.dm b/code/modules/reagents/chemistry/reagents/alcohol.dm index 7314ed61bdb..ac51cdc9cad 100644 --- a/code/modules/reagents/chemistry/reagents/alcohol.dm +++ b/code/modules/reagents/chemistry/reagents/alcohol.dm @@ -1567,13 +1567,12 @@ drink_name = "Ahdomai's Eclipse" drink_desc = "Blizzard in a glass. Tajaran signature drink!" taste_description = "ice" + var/min_achievable_temp = 250 /datum/reagent/consumable/ethanol/ahdomai_eclipse/on_mob_life(mob/living/M) - if(!istajaran(M)) - return ..() - if(M.bodytemperature > 250) - M.bodytemperature = max(250, M.bodytemperature - (50 * TEMPERATURE_DAMAGE_COEFFICIENT)) - + . = ..() + if(istajaran(M) && M.bodytemperature > min_achievable_temp) + M.bodytemperature = max(min_achievable_temp, M.bodytemperature - (50 * TEMPERATURE_DAMAGE_COEFFICIENT)) /datum/reagent/consumable/ethanol/beach_feast name = "Feast by the Beach"