From 03834ce6bc3c6f0298ed1bf0158f1d5732a61af7 Mon Sep 17 00:00:00 2001 From: Mark Johnson <1994508+notfoundry@users.noreply.github.com> Date: Thu, 21 Jan 2021 12:42:36 -0500 Subject: [PATCH] Change recipe validity check to allow 7/8 as wood types --- src/com/dre/brewery/recipe/BRecipe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/dre/brewery/recipe/BRecipe.java b/src/com/dre/brewery/recipe/BRecipe.java index 3d3d1e1..d552179 100644 --- a/src/com/dre/brewery/recipe/BRecipe.java +++ b/src/com/dre/brewery/recipe/BRecipe.java @@ -326,7 +326,7 @@ public class BRecipe { P.p.errorLog("Invalid distilltime '" + distillTime + "' in Recipe: " + getRecipeName()); return false; } - if (wood < 0 || wood > 6) { + if (wood < 0 || wood > 8) { P.p.errorLog("Invalid wood type '" + wood + "' in Recipe: " + getRecipeName()); return false; }