From 3fe6c5aa07a433c33916661b61eea72cc106c045 Mon Sep 17 00:00:00 2001 From: Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com> Date: Wed, 5 Jun 2024 13:43:24 +0200 Subject: Fix: Area Walls in Nucleus (#1994) --- .../skyhanni/features/mining/crystalhollows/CrystalHollowsWalls.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features') diff --git a/src/main/java/at/hannibal2/skyhanni/features/mining/crystalhollows/CrystalHollowsWalls.kt b/src/main/java/at/hannibal2/skyhanni/features/mining/crystalhollows/CrystalHollowsWalls.kt index df276f468..ef6a66386 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/mining/crystalhollows/CrystalHollowsWalls.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/mining/crystalhollows/CrystalHollowsWalls.kt @@ -122,9 +122,9 @@ class CrystalHollowsWalls { } private fun drawNucleus(event: LorenzRenderWorldEvent) { - val (southEastCorner, southWestCorner, northEastCorner, northWestCorner) = nucleusBBInflate + val (southEastCorner, southWestCorner, northWestCorner, northEastCorner) = nucleusBBInflate .getCorners(nucleusBBInflate.minY) - val (southWestTopCorner, southEastTopCorner, northEastTopCorner, northWestTopCorner) = nucleusBBInflate + val (southEastTopCorner, southWestTopCorner, northWestTopCorner, northEastTopCorner) = nucleusBBInflate .getCorners(nucleusBBInflate.maxY) RenderUtils.QuadDrawer.draw3D(event.partialTicks) { -- cgit