From e4af6ca0a9d833ab69be2285c2d7bf9ef6b80a78 Mon Sep 17 00:00:00 2001 From: HMBGERDO <61080616+HMBGERDO@users.noreply.github.com> Date: Mon, 11 Nov 2024 16:15:05 +0100 Subject: [PATCH] thermite no more makes walls with 5u max reagents (#27330) --- code/modules/reagents/chemistry/reagents/pyrotechnic.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/pyrotechnic.dm b/code/modules/reagents/chemistry/reagents/pyrotechnic.dm index f986e610d92c6..ec1b87f2da377 100644 --- a/code/modules/reagents/chemistry/reagents/pyrotechnic.dm +++ b/code/modules/reagents/chemistry/reagents/pyrotechnic.dm @@ -72,7 +72,7 @@ if(isspaceturf(T)) return if(!T.reagents) - T.create_reagents(volume) + T.create_reagents(1000) T.reagents.add_reagent("napalm", volume) /datum/reagent/napalm/reaction_mob(mob/living/M, method = REAGENT_TOUCH, volume) @@ -220,7 +220,7 @@ /datum/reagent/thermite/reaction_turf(turf/simulated/S, volume) if(istype(S)) if(!S.reagents) - S.create_reagents(volume) + S.create_reagents(1000) S.reagents.add_reagent("thermite", volume) if(S.active_hotspot) S.reagents.temperature_reagents(S.active_hotspot.temperature, 10, 300)