Skip to content

Commit

Permalink
fix (#957)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kapu1178 authored Jun 1, 2024
1 parent 3559fa2 commit 3249bc6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions code/modules/reagents/chemistry/recipes/pyrotechnics.dm
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@
reaction_flags = REACTION_INSTANT

/datum/chemical_reaction/pyrosium_oxygen/on_reaction(datum/reagents/holder, datum/equilibrium/reaction, created_volume)
holder.chem_temp += 10*created_volume
holder.expose_temperature(holder.chem_temp + (10 * created_volume), 1)

/datum/chemical_reaction/pyrosium
results = list(/datum/reagent/pyrosium = 3)
Expand All @@ -388,8 +388,7 @@
thermic_constant = 0

/datum/chemical_reaction/pyrosium/on_reaction(datum/reagents/holder, datum/equilibrium/reaction, created_volume)
holder.chem_temp = 20 // also cools the fuck down
return
holder.expose_temperature(20, 1) // also cools the fuck down

/datum/chemical_reaction/reagent_explosion/nitrous_oxide
required_reagents = list(/datum/reagent/nitrous_oxide = 1)
Expand Down

0 comments on commit 3249bc6

Please sign in to comment.