From f9c8beca256eb7375a75f24a5d6f3396e2ca82d9 Mon Sep 17 00:00:00 2001 From: hyperjll <105099113+hyperjll@users.noreply.github.com> Date: Fri, 5 Jul 2024 14:01:42 -0400 Subject: [PATCH] Fixes fireproof reagent containers (#84607) Fixes: https://github.com/tgstation/tgstation/issues/84592 ## About The Pull Request Reagent containers had a duplicated fire_act proc which somehow resulted in fireproof reagent containers of all kinds. This is now deleted. ## Why It's Good For The Game Fixes a bug. ## Changelog :cl: fix: Reagent containers are no longer mysteriously fireproof. /:cl: --- code/modules/reagents/reagent_containers.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/modules/reagents/reagent_containers.dm b/code/modules/reagents/reagent_containers.dm index e1d78353bca..e95b5eea820 100644 --- a/code/modules/reagents/reagent_containers.dm +++ b/code/modules/reagents/reagent_containers.dm @@ -266,9 +266,6 @@ reagents.expose_temperature(1000) return ..() | COMPONENT_MICROWAVE_SUCCESS -/obj/item/reagent_containers/fire_act(temperature, volume) - reagents.expose_temperature(temperature) - /// Updates the icon of the container when the reagents change. Eats signal args /obj/item/reagent_containers/proc/on_reagent_change(datum/reagents/holder, ...) SIGNAL_HANDLER