From 58a5fc9e4658ee9363b3f9bcb6178789d2a18ed9 Mon Sep 17 00:00:00 2001 From: Nathan Winters <100448493+CinnamonSnowball@users.noreply.github.com> Date: Thu, 22 Jun 2023 18:30:02 +0200 Subject: [PATCH] Make reagents adjust temperature towards actual bodytemp (#20821) --- code/modules/reagents/chemistry/reagents_holder.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/reagents_holder.dm b/code/modules/reagents/chemistry/reagents_holder.dm index a9b0e4a6d7a..9e6ad2e544c 100644 --- a/code/modules/reagents/chemistry/reagents_holder.dm +++ b/code/modules/reagents/chemistry/reagents_holder.dm @@ -295,7 +295,7 @@ */ /datum/reagents/proc/metabolize(mob/living/M) if(M) - temperature_reagents(M.bodytemperature - 30) + temperature_reagents(M.bodytemperature) M.absorb_blood() for(var/datum/reagent/R as anything in addiction_threshold_accumulated)