From 3a0d1dc982b4aec990cf7f664152d54355cb7843 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Tue, 5 Sep 2017 12:01:00 -0400 Subject: [PATCH] Nerfs compiling errors, lowers expectations for assistants --- code/citadel/cit_crewobjectives.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/citadel/cit_crewobjectives.dm b/code/citadel/cit_crewobjectives.dm index 8c883a3d30..e05c90e1d8 100644 --- a/code/citadel/cit_crewobjectives.dm +++ b/code/citadel/cit_crewobjectives.dm @@ -269,7 +269,7 @@ for(var/mob/living/carbon/human/H in GLOB.mob_list) if(!H.stat == DEAD) if(H.z == ZLEVEL_STATION || SSshuttle.emergency.shuttle_areas[get_area(H)]) - if(istype(H.neck, /obj/item/clothing/neck/petcollar) + if(istype(H.neck, /obj/item/clothing/neck/petcollar)) petcount-- if(petcount <= 0) return 1 @@ -299,7 +299,7 @@ for(var/mob/living/carbon/human/H in GLOB.mob_list) if(!H.stat == DEAD) if(H.z == ZLEVEL_STATION || SSshuttle.emergency.shuttle_areas[get_area(H)]) - if(istype(H.neck, /obj/item/clothing/neck/petcollar) + if(istype(H.neck, /obj/item/clothing/neck/petcollar)) petcount-- if(petcount <= 0) return 1 @@ -315,7 +315,7 @@ /datum/objective/crew/assistant/petsplosion/New() . = ..() - target_amount = rand(10,75) + target_amount = rand(10,25) update_explanation_text() /datum/objective/crew/assistant/petsplosion/update_explanation_text() @@ -331,7 +331,7 @@ for(var/mob/living/carbon/human/H in GLOB.mob_list) if(!H.stat == DEAD) if(H.z == ZLEVEL_STATION || SSshuttle.emergency.shuttle_areas[get_area(H)]) - if(istype(H.neck, /obj/item/clothing/neck/petcollar) + if(istype(H.neck, /obj/item/clothing/neck/petcollar)) petcount-- if(petcount <= 0) return 1