diff options
Diffstat (limited to 'mod/src/main/java/kr/syeyoung')
-rwxr-xr-x | mod/src/main/java/kr/syeyoung/dungeonsguide/dungeon/mechanics/DungeonBreakableWall.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/src/main/java/kr/syeyoung/dungeonsguide/dungeon/mechanics/DungeonBreakableWall.java b/mod/src/main/java/kr/syeyoung/dungeonsguide/dungeon/mechanics/DungeonBreakableWall.java index b342f6fd..a6f6fe6c 100755 --- a/mod/src/main/java/kr/syeyoung/dungeonsguide/dungeon/mechanics/DungeonBreakableWall.java +++ b/mod/src/main/java/kr/syeyoung/dungeonsguide/dungeon/mechanics/DungeonBreakableWall.java @@ -108,8 +108,8 @@ public class DungeonBreakableWall implements DungeonMechanic, RouteBlocker { @Override public void highlight(Color color, String name, DungeonRoom dungeonRoom, float partialTicks) { if (secretPoint.getOffsetPointList().isEmpty()) return; - OffsetPoint firstpt = secretPoint.getOffsetPointList().get(0); - BlockPos pos = firstpt.getBlockPos(dungeonRoom); + OffsetPoint firstPoint = secretPoint.getOffsetPointList().get(0); + BlockPos pos = firstPoint.getBlockPos(dungeonRoom); RenderUtils.drawTextAtWorld(name, pos.getX() +0.5f, pos.getY()+0.75f, pos.getZ()+0.5f, 0xFFFFFFFF, 0.03f, false, true, partialTicks); RenderUtils.drawTextAtWorld(getCurrentState(dungeonRoom), pos.getX() +0.5f, pos.getY()+0.25f, pos.getZ()+0.5f, 0xFFFFFFFF, 0.03f, false, true, partialTicks); |