Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyyn authored May 27, 2024
1 parent 8375f10 commit 104c151
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/main/java/mcp/mobius/betterbarrels/BetterBarrels.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 104c151

Please sign in to comment.