Merge pull request #37712 from ninjanomnom/dont-step-off-the-edge

Fixes a radiation runtime related to going off the map edge
This commit is contained in:
Jordan Brown
2018-05-06 16:11:36 -04:00
committed by CitadelStationBot
parent 11c1e8fbf7
commit 56e9fcd29c
+3
View File
@@ -29,6 +29,9 @@
/datum/radiation_wave/process()
master_turf = get_step(master_turf, move_dir)
if(!master_turf)
qdel(src)
return
steps++
var/list/atoms = get_rad_atoms()