diff --git a/code/modules/atmospherics/gasmixtures/reactions.dm b/code/modules/atmospherics/gasmixtures/reactions.dm index b44b645251..b523d333df 100644 --- a/code/modules/atmospherics/gasmixtures/reactions.dm +++ b/code/modules/atmospherics/gasmixtures/reactions.dm @@ -89,7 +89,7 @@ location.temperature_expose(air, temperature, CELL_VOLUME) /proc/radiation_burn(turf/open/location, energy_released) - if(location && prob(10)) + if(istype(location) && prob(10)) radiation_pulse(location, energy_released/TRITIUM_BURN_RADIOACTIVITY_FACTOR) /datum/gas_reaction/tritfire/react(datum/gas_mixture/air, datum/holder)