From e1f82820493fba58d5ccaecf547b921aa4f0e844 Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Sun, 10 Apr 2016 14:10:23 -0700 Subject: [PATCH] Fix bug with evaluating mod conditions --- src/client/models/game/recipe.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/models/game/recipe.coffee b/src/client/models/game/recipe.coffee index fb59bbbdd..b65cfc8dc 100644 --- a/src/client/models/game/recipe.coffee +++ b/src/client/models/game/recipe.coffee @@ -103,7 +103,7 @@ module.exports = class Recipe extends BaseModel if modPack?.findItemByName(@condition.noun)? result = true else if @condition.verb is 'mod' - modPack.eachMod (mod)-> + modPack.eachMod (mod)=> if mod.name is @condition.noun result = true