diff --git a/src/main/java/mcp/mobius/betterbarrels/BetterBarrels.java b/src/main/java/mcp/mobius/betterbarrels/BetterBarrels.java index 5d32829..3710c2d 100644 --- a/src/main/java/mcp/mobius/betterbarrels/BetterBarrels.java +++ b/src/main/java/mcp/mobius/betterbarrels/BetterBarrels.java @@ -69,7 +69,7 @@ public static void debug(String msg) { /* CONFIG PARAMS */ private static Configuration config = null; - public static boolean DisableStacking; + public static boolean disableDollyStacking; public static boolean fullBarrelTexture = true; public static boolean highRezTexture = true; public static boolean showUpgradeSymbols = true; @@ -216,7 +216,11 @@ public void preInit(FMLPreInitializationEvent event) { BlacklistedTileEntiyClassNames, "The Canonical Class-Names of TileEntities that should be ignored when using a Dolly."); - DisableStacking = config.getBoolean("DisableStacking", Configuration.CATEGORY_GENERAL, false, "Disables the ability to collapse and stack the dollies"); + disableDollyStacking = config.getBoolean( + "disableDollyStacking", + Configuration.CATEGORY_GENERAL, + false, + "Disables the ability to collapse and stack the dollies"); // fullBarrelTexture = config.get(Configuration.CATEGORY_GENERAL, "fullBarrelTexture", // true).getBoolean(true);