From 94354c3dd67bc5361e0e4fb203bc32c4a296847b Mon Sep 17 00:00:00 2001 From: deathride58 Date: Wed, 6 Sep 2017 14:14:18 -0400 Subject: [PATCH] more janitor adjustments --- code/citadel/cit_crewobjectives.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/citadel/cit_crewobjectives.dm b/code/citadel/cit_crewobjectives.dm index 3d2fcc10ba..2ac404375f 100644 --- a/code/citadel/cit_crewobjectives.dm +++ b/code/citadel/cit_crewobjectives.dm @@ -397,8 +397,8 @@ /datum/objective/crew/janitor/clean/New() . = ..() - var/list/possibleareas = GLOB.teleportlocs - /area/space - for(var/i in 1 to rand(1,4)) + var/list/possibleareas = GLOB.teleportlocs - /area - typesof(/area/space) - typesof(/area/lavaland) - typesof(/area/mine) - typesof(/area/ai_monitored/turret_protected) - typesof(/area/tcommsat) + for(var/i in 1 to rand(1,6)) areas |= pick_n_take(possibleareas) update_explanation_text() @@ -412,7 +412,7 @@ explanation_text += ", " if(i == areas.len - 1) explanation_text += "and " - explanation_text += " [(areas.len ==1) ? "is completely" : "are [(areas.len == 2) ? "completely" : "all"]"] spotless at the end of the shift." + explanation_text += " [(areas.len ==1) ? "is completely" : "are [(areas.len == 2) ? "completely" : "all"]"] clean at the end of the shift." /datum/objective/crew/janitor/clean/check_completion() for(var/area/A in areas)