Skip to content

Commit

Permalink
Revert #d9edb08ee639bfd643f158b14c9bda9b05459b1f, but set default to …
Browse files Browse the repository at this point in the history
…enabled.
  • Loading branch information
AlgorithmX2 committed Dec 2, 2017
1 parent d9edb08 commit 68ce8ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/main/java/mod/chiselsandbits/config/ModConfig.java
Expand Up @@ -39,8 +39,8 @@ public class ModConfig extends Configuration
@Configured( category = "Integration Settings" )
public boolean enableVivecraftCompatibility;

// @Configured( category = "Integration Settings" )
// public boolean enableMCMultipart;
@Configured( category = "Integration Settings" )
public boolean enableMCMultipart;

@Configured( category = "Troubleshooting" )
public boolean enableAPITestingItem;
Expand Down Expand Up @@ -406,7 +406,7 @@ private void setDefaults()
enableBitSaw = true;
ShowBitsInJEI = false;
enableVivecraftCompatibility = false;
// enableMCMultipart = false;
enableMCMultipart = true;
}

public ModConfig(
Expand Down
Expand Up @@ -18,7 +18,7 @@ public class MCMultipart2Addon implements IMCMPAddon

private boolean isEnabled()
{
return true; // ChiselsAndBits.getConfig().enableMCMultipart;
return ChiselsAndBits.getConfig().enableMCMultipart;
}

public MCMultipart2Addon()
Expand Down

0 comments on commit 68ce8ae

Please sign in to comment.