From f977bd5171db43a2278361b2a9d04b9ffd2f9c0f Mon Sep 17 00:00:00 2001 From: Nick Gordon Date: Thu, 28 Nov 2013 12:46:49 -0800 Subject: [PATCH] I don't know much about coffeescript, but this build should pass now --- script/helpers.coffee | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/helpers.coffee b/script/helpers.coffee index 903118badb..12c50f5e15 100644 --- a/script/helpers.coffee +++ b/script/helpers.coffee @@ -353,7 +353,8 @@ module.exports = countPets: (originalCount, pets) -> count = if originalCount? then originalCount else _.size(pets) - count-- for pet,info in items.items.specialPets if pets[pet] + for pet of items.items.specialPets + count-- if pets[pet] count ###