Classic me.

This commit is contained in:
Fermi
2019-06-16 10:25:43 +01:00
parent be36a8bb33
commit 8fb3022624
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -793,7 +793,9 @@
/datum/reagents/proc/adjust_thermal_energy(J, min_temp = 2.7, max_temp = 1000)
var/S = specific_heat()
chem_temp = CLAMP(chem_temp + (J / (S * total_volume)), min_temp, max_temp)
my_atom.temp_check()
if(istype(my_atom, /obj/item/reagent_containers))
var/obj/item/reagent_containers/RC = my_atom
RC.temp_check()
/datum/reagents/proc/add_reagent(reagent, amount, list/data=null, reagtemp = 300, other_purity = 1, other_pH, no_react = 0)