Runtimes and balance

This commit is contained in:
Dip
2020-10-13 06:10:12 -03:00
parent 688617d631
commit f0bf81cb1f
4 changed files with 9 additions and 5 deletions
+3 -1
View File
@@ -13,7 +13,8 @@
var/list/processing_list = list(location)
. = list()
var/i = 0
while(i < length(processing_list))
var/lim = 1
while(i < lim)
var/atom/thing = processing_list[++i]
if(ignored_things[thing.type])
continue
@@ -21,6 +22,7 @@
if((thing.rad_flags & RAD_PROTECT_CONTENTS) || (SEND_SIGNAL(thing, COMSIG_ATOM_RAD_PROBE) & COMPONENT_BLOCK_RADIATION))
continue
processing_list += thing.contents
lim = processing_list.len
/proc/radiation_pulse(atom/source, intensity, range_modifier, log=FALSE, can_contaminate=TRUE)
if(!SSradiation.can_fire)