Skip to content

Commit

Permalink
Remove MCMP Setting, Temporarily?
Browse files Browse the repository at this point in the history
  • Loading branch information
AlgorithmX2 committed Dec 1, 2017
1 parent 6ceeb7b commit d9edb08
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 = false;
}

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

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

public MCMultipart2Addon()
Expand Down

0 comments on commit d9edb08

Please sign in to comment.