Fix typo, add playtest message.

This commit is contained in:
Arokha Sieyes
2017-02-15 12:07:51 -05:00
parent 69f0a222e5
commit ea275ad626
+3 -2
View File
@@ -147,9 +147,10 @@ var/datum/controller/rogue/rm_controller = new()
ZM_target = pick(clean_zones)
if(ZM_target)
world.log << "RM(stats): SCORING [ready_zones.len] zones." //DEBUG code for playtest stats gathering.
for(var/datum/rogue/zonemaster/ZM_toscore in ready_zones) //Score all the zones first.
if(!ZM_target.scored)
ZM_toscore.score_zone()
if(ZM_toscore.scored) continue
ZM_toscore.score_zone()
ZM_target.prepare_zone()
else
rm_controller.dbg("RMC(pnz): I was asked for a new zone but there's no space.")