Merge pull request #37965 from AnturK/whatthecommentsays
Fixes fire_act working on deleted things.
This commit is contained in:
@@ -94,7 +94,7 @@
|
|||||||
|
|
||||||
for(var/A in location)
|
for(var/A in location)
|
||||||
var/atom/AT = A
|
var/atom/AT = A
|
||||||
if(AT && AT != src) // It's possible that the item is deleted in temperature_expose
|
if(!QDELETED(AT) && AT != src) // It's possible that the item is deleted in temperature_expose
|
||||||
AT.fire_act(temperature, volume)
|
AT.fire_act(temperature, volume)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user