diff options
author | Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> | 2023-10-05 10:53:26 -0400 |
---|---|---|
committer | Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> | 2023-10-22 23:20:34 -0400 |
commit | cd3ebd6e9411bdd909bcd68ab6c33aad5b52f07e (patch) | |
tree | e07c630974b3bf52b59851239215cc2342f8bf2d /src/main/java/me/xmrvizzy/skyblocker/skyblock/diana | |
parent | 594f1d34b51cc49cea90003262f77e0974e5b62d (diff) | |
download | Skyblocker-cd3ebd6e9411bdd909bcd68ab6c33aad5b52f07e.tar.gz Skyblocker-cd3ebd6e9411bdd909bcd68ab6c33aad5b52f07e.tar.bz2 Skyblocker-cd3ebd6e9411bdd909bcd68ab6c33aad5b52f07e.zip |
Fix RenderHelper#renderQuad
Diffstat (limited to 'src/main/java/me/xmrvizzy/skyblocker/skyblock/diana')
-rw-r--r-- | src/main/java/me/xmrvizzy/skyblocker/skyblock/diana/MythologicalRitual.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main/java/me/xmrvizzy/skyblocker/skyblock/diana/MythologicalRitual.java b/src/main/java/me/xmrvizzy/skyblocker/skyblock/diana/MythologicalRitual.java index 72607037..f17d4195 100644 --- a/src/main/java/me/xmrvizzy/skyblocker/skyblock/diana/MythologicalRitual.java +++ b/src/main/java/me/xmrvizzy/skyblocker/skyblock/diana/MythologicalRitual.java @@ -123,8 +123,6 @@ public class MythologicalRitual { } public static void render(WorldRenderContext context) { - RenderHelper.renderLinesFromPoints(context, new Vec3d[]{new Vec3d(0, 96, -100), new Vec3d(0, 96, 100)}, ORANGE_COLOR_COMPONENTS, 0.25F, 5); // TODO debug - RenderHelper.renderQuad(context, new Vec3d[]{new Vec3d(0, 100, -100), new Vec3d(0, 100, 100), new Vec3d(0, 200, 100), new Vec3d(0, 200, -100)}, ORANGE_COLOR_COMPONENTS, 0.25F, true); // TODO debug if (isActive()) { for (Map.Entry<BlockPos, GriffinBurrow> burrowEntry : griffinBurrows.entrySet()) { GriffinBurrow burrow = burrowEntry.getValue(); @@ -133,10 +131,10 @@ public class MythologicalRitual { } if (burrow.confirmed != TriState.FALSE) { if (burrow.nextBurrowPlane != null) { - RenderHelper.renderLinesFromPoints(context, burrow.nextBurrowPlane, ORANGE_COLOR_COMPONENTS, 0.25F, 5); + RenderHelper.renderQuad(context, burrow.nextBurrowPlane, ORANGE_COLOR_COMPONENTS, 0.25F, true); } if (burrow.echoBurrowPlane != null) { - RenderHelper.renderLinesFromPoints(context, burrow.echoBurrowPlane, ORANGE_COLOR_COMPONENTS, 0.25F, 5); + RenderHelper.renderQuad(context, burrow.echoBurrowPlane, ORANGE_COLOR_COMPONENTS, 0.25F, true); } } } |