From 233af44bd214a0364aa9913e868a8c5db70de15b Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Wed, 6 Jul 2016 23:27:23 -0500 Subject: [PATCH] Sugar Cane Block -> Sugar Cane. Also detect if the auto updating is working properly. --- .../HelperStructures/Common/GenericFunctions.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sig/plugin/TwosideKeeper/HelperStructures/Common/GenericFunctions.java b/src/sig/plugin/TwosideKeeper/HelperStructures/Common/GenericFunctions.java index b9685a8..2e62f38 100644 --- a/src/sig/plugin/TwosideKeeper/HelperStructures/Common/GenericFunctions.java +++ b/src/sig/plugin/TwosideKeeper/HelperStructures/Common/GenericFunctions.java @@ -1408,6 +1408,9 @@ public class GenericFunctions { case WATER_LILY:{ return "Lily Pad"; } + case SUGAR_CANE_BLOCK:{ + return "Sugar Cane"; + } default:{ return GenericFunctions.CapitalizeFirstLetters(type.getType().toString().replace("_", " ")); }