Skip to content

Commit

Permalink
fix button
Browse files Browse the repository at this point in the history
  • Loading branch information
Tictim committed Dec 7, 2023
1 parent d5293b5 commit 6de4916
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -400,11 +400,11 @@ protected void addRealDisplayText(List<ITextComponent> textList, boolean configM
MinerUtil.DISPLAY_CLICK_REPEAT_ENABLE, MinerUtil.DISPLAY_CLICK_REPEAT_DISABLE)));

textList.add(new TextComponentTranslation("gregtech.machine.miner.display.chunk_mode",
toggleButton(this.minerLogic.isRepeat(), this.minerLogic.isWorking(),
toggleButton(this.minerLogic.isChunkMode(), this.minerLogic.isWorking(),
MinerUtil.DISPLAY_CLICK_CHUNK_MODE_ENABLE, MinerUtil.DISPLAY_CLICK_CHUNK_MODE_DISABLE)));

textList.add(new TextComponentTranslation("gregtech.machine.miner.display.silk_touch",
toggleButton(this.minerLogic.isRepeat(), this.minerLogic.isWorking(),
toggleButton(this.minerLogic.isSilkTouchMode(), this.minerLogic.isWorking(),
MinerUtil.DISPLAY_CLICK_SILK_TOUCH_ENABLE, MinerUtil.DISPLAY_CLICK_SILK_TOUCH_DISABLE)));

ITextComponent replaceOreText = new TextComponentTranslation(
Expand Down

0 comments on commit 6de4916

Please sign in to comment.