Skip to content

Commit

Permalink
Uh.. replacing bits isn't a config option, what was I thinking...
Browse files Browse the repository at this point in the history
  • Loading branch information
AlgorithmX2 committed Nov 6, 2016
1 parent f6240e1 commit 0e1f382
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 3 additions & 4 deletions src/main/java/mod/chiselsandbits/config/ModConfig.java
Expand Up @@ -141,9 +141,6 @@ public class ModConfig extends Configuration
@Configured( category = "Client Settings" )
public boolean displayMeasuringTapeInChat;

@Configured( category = "Client Settings" )
public boolean replaceingBits;

@Configured( category = "Client Settings" )
public float radialMenuVolume;

Expand Down Expand Up @@ -273,6 +270,9 @@ public class ModConfig extends Configuration
@Configured( category = "Balance Settings" )
public boolean fullBlockCrafting;

// in game state
public boolean replaceingBits = false;

public boolean deobfuscatedEnvironment()
{
final Object deObf = Launch.blackboard.get( "fml.deobfuscatedEnvironment" );
Expand Down Expand Up @@ -322,7 +322,6 @@ private void setDefaults()
displayMeasuringTapeInChat = false;
perChiselMode = true;
fullBlockCrafting = true;
replaceingBits = false;
radialMenuVolume = 0.1f;
chatModeNotification = false;
itemNameModeDisplay = true;
Expand Down
2 changes: 0 additions & 2 deletions src/main/resources/assets/chiselsandbits/lang/en_US.lang
Expand Up @@ -241,7 +241,5 @@ mod.chiselsandbits.config.useVBO=Use VBOs
mod.chiselsandbits.config.defaultToDynamicRenderer.tooltip=By default C&B uses the static renderer, and changes to the Dynamic Renderer on update, This setting reverse that; After determining the detail of the model it will decide to revert to the static renderer, helpful for more complicated scenes that cause stalls when using the static renderer.
mod.chiselsandbits.config.forceDynamicRenderer.tooltip=Debug Setting, that disable the static render entirely.
mod.chiselsandbits.config.useVBO.tooltip=By Default uses the same setting as MC, but can be overridden.
mod.chiselsandbits.config.replaceingBits=Replace Bits
mod.chiselsandbits.config.replaceingBits.tooltip=Can be Toggled on Bit Radial Menu.
mod.chiselsandbits.config.radialMenuVolume='Click' volume for radial menu.
mod.chiselsandbits.config.radialMenuVolume.tooltip=Setting to Zero will disable it.

0 comments on commit 0e1f382

Please sign in to comment.