Skip to content

Commit

Permalink
fix mine pos for large miner
Browse files Browse the repository at this point in the history
  • Loading branch information
ghzdude committed Feb 4, 2025
1 parent 51e68c1 commit 84431a1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,9 @@ protected void configureDisplayText(MultiblockUIFactory.Builder builder) {

list.add(KeyUtil.lang(TextFormatting.GRAY, "gregtech.machine.miner.mining_at"));
list.add(KeyUtil.lang(TextFormatting.GRAY, "gregtech.machine.miner.mining_pos",
minerLogic.getX().get(), minerLogic.getY().get(), minerLogic.getZ().get()));
minerLogic.getMineX().get(),
minerLogic.getMineY().get(),
minerLogic.getMineZ().get()));

if (minerLogic.isChunkMode()) {
list.add(KeyUtil.lang(TextFormatting.GRAY, "gregtech.machine.miner.working_area_chunks",
Expand Down

0 comments on commit 84431a1

Please sign in to comment.