Skip to content

Commit

Permalink
thermite no more makes walls with 5u max reagents (#27330)
Browse files Browse the repository at this point in the history
  • Loading branch information
HMBGERDO authored Nov 11, 2024
1 parent c4bde0d commit e4af6ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/reagents/chemistry/reagents/pyrotechnic.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit e4af6ca

Please sign in to comment.