Update radiation.dm

This commit is contained in:
silicons
2020-09-27 13:36:42 -07:00
committed by GitHub
parent 1e8b8df596
commit 7af979fffb
+3 -3
View File
@@ -12,9 +12,9 @@
))
var/list/processing_list = list(location)
. = list()
while(processing_list.len)
var/atom/thing = processing_list[1]
processing_list -= thing
var/i = 0
while(i < length(processing_list))
var/atom/thing = processing_list[++i]
if(ignored_things[thing.type])
continue
. += thing