Skip to content

Commit

Permalink
Wrench display name fixed and showing correct strings.
Browse files Browse the repository at this point in the history
Add some missing blueprint strings.
  • Loading branch information
AlgorithmX2 committed Dec 5, 2017
1 parent b27e582 commit 2ceb495
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/java/mod/chiselsandbits/items/ItemWrench.java
Expand Up @@ -8,14 +8,12 @@
import mod.chiselsandbits.core.ClientSide;
import mod.chiselsandbits.helpers.ChiselModeManager;
import mod.chiselsandbits.helpers.ChiselToolType;
import mod.chiselsandbits.helpers.DeprecationHelper;
import mod.chiselsandbits.helpers.LocalStrings;
import mod.chiselsandbits.helpers.ModUtil;
import mod.chiselsandbits.integration.mcmultipart.MCMultipartProxy;
import mod.chiselsandbits.interfaces.IChiselModeItem;
import mod.chiselsandbits.interfaces.IItemScrollWheel;
import mod.chiselsandbits.modes.IToolMode;
import mod.chiselsandbits.modes.TapeMeasureModes;
import mod.chiselsandbits.modes.WrenchModes;
import net.minecraft.block.material.EnumPushReaction;
import net.minecraft.block.state.IBlockState;
Expand Down Expand Up @@ -57,7 +55,7 @@ public String getHighlightTip(
{
if ( ChiselsAndBits.getConfig().itemNameModeDisplay )
{
return displayName + " - " + TapeMeasureModes.getMode( item ).string.getLocal() + " - " + DeprecationHelper.translateToLocal( "chiselsandbits.color." + WrenchModes.getMode( item ).string.getLocal() );
return displayName + " - " + WrenchModes.getMode( item ).string.getLocal();
}

return displayName;
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/assets/chiselsandbits/lang/en_us.lang
Expand Up @@ -63,6 +63,9 @@ mod.chiselsandbits.positivepatternmode.additive=Additive
mod.chiselsandbits.positivepatternmode.placement=Placement
mod.chiselsandbits.positivepatternmode.impose=Impose

mod.chiselsandbits.blueprint.placement=Blueprint construction begun.
mod.chiselsandbits.blueprint.finished=Blueprint construction finished.

mod.chiselsandbits.wrench.nudge_bit=Nudge Bit
mod.chiselsandbits.wrench.nudge_block=Nudge Block
mod.chiselsandbits.wrench.rotate_block=Rotate Block
Expand Down

0 comments on commit 2ceb495

Please sign in to comment.