diff options
author | Walker Selby <git@walkerselby.com> | 2023-01-22 18:39:28 -0800 |
---|---|---|
committer | Walker Selby <git@walkerselby.com> | 2023-01-22 18:39:28 -0800 |
commit | 09724692f4d30c2df897117b949a528d384a8988 (patch) | |
tree | 142e5e3e418380334d0b42347c297421654ddba8 | |
parent | a84b7b2585c409f1f9e5ad499c7275b64df26c34 (diff) | |
download | Skyblock-Dungeons-Guide-09724692f4d30c2df897117b949a528d384a8988.tar.gz Skyblock-Dungeons-Guide-09724692f4d30c2df897117b949a528d384a8988.tar.bz2 Skyblock-Dungeons-Guide-09724692f4d30c2df897117b949a528d384a8988.zip |
Rename firstpt to firstPoint for clarity
-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); |