mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 07:33:34 +01:00
standardize temperature_expose args (#30903)
* standardize temperature_expose args * some i missed * remove dubious use of temperature_expose() * fix hardsuit tank insertion proc * remove unused gas_mixture arg * revert test_tiny.dmm
This commit is contained in:
@@ -288,7 +288,7 @@
|
||||
new /obj/structure/girder/displaced(loc)
|
||||
qdel(src)
|
||||
|
||||
/obj/structure/falsewall/plasma/temperature_expose(datum/gas_mixture/air, exposed_temperature, exposed_volume)
|
||||
/obj/structure/falsewall/plasma/temperature_expose(exposed_temperature, exposed_volume)
|
||||
..()
|
||||
if(exposed_temperature > 300)
|
||||
burnbabyburn()
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
for(var/i=0;i < metalAmount;i++)
|
||||
new metal_type(get_turf(src))
|
||||
|
||||
/obj/structure/girder/temperature_expose(exposed_temperature)
|
||||
/obj/structure/girder/temperature_expose(exposed_temperature, exposed_volume)
|
||||
..()
|
||||
var/temp_check = exposed_temperature
|
||||
if(temp_check >= GIRDER_MELTING_TEMP)
|
||||
|
||||
@@ -696,7 +696,7 @@
|
||||
superconductivity = ZERO_HEAT_TRANSFER_COEFFICIENT
|
||||
rad_conversion_amount = 2.25
|
||||
|
||||
/obj/structure/window/plasmareinforced/temperature_expose(datum/gas_mixture/air, exposed_temperature, exposed_volume)
|
||||
/obj/structure/window/plasmareinforced/temperature_expose(exposed_temperature, exposed_volume)
|
||||
return
|
||||
|
||||
/obj/structure/window/full
|
||||
@@ -758,7 +758,7 @@
|
||||
rad_insulation_gamma = RAD_GAMMA_FULL_WINDOW
|
||||
rad_conversion_amount = 2.2
|
||||
|
||||
/obj/structure/window/full/plasmareinforced/temperature_expose(datum/gas_mixture/air, exposed_temperature, exposed_volume)
|
||||
/obj/structure/window/full/plasmareinforced/temperature_expose(exposed_temperature, exposed_volume)
|
||||
return
|
||||
|
||||
/obj/structure/window/full/reinforced
|
||||
|
||||
Reference in New Issue
Block a user