Merge pull request #37965 from AnturK/whatthecommentsays

Fixes fire_act working on deleted things.
This commit is contained in:
Jordan Brown
2018-05-21 17:27:15 -04:00
committed by letterjay
parent 6489ef5511
commit 60b3384695

View File

@@ -94,7 +94,7 @@
for(var/A in location)
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)
return