diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2024-06-13 02:31:30 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-12 18:31:30 +0200 |
commit | 51caf09cc9b0c24aec9c9f82e895ff1529cc8cb1 (patch) | |
tree | b7a871fae8a96560fddbb2a4999756079c84d58e /src/main/java/at/hannibal2/skyhanni/features/dungeon | |
parent | 488c0e3de136943604e21bee4f49969bd3121895 (diff) | |
download | skyhanni-51caf09cc9b0c24aec9c9f82e895ff1529cc8cb1.tar.gz skyhanni-51caf09cc9b0c24aec9c9f82e895ff1529cc8cb1.tar.bz2 skyhanni-51caf09cc9b0c24aec9c9f82e895ff1529cc8cb1.zip |
Backend: No more GriffinUtils, move drawWaypointFilled to RenderUtils (#1930)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/dungeon')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonLividFinder.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonLividFinder.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonLividFinder.kt index 989368595..e1e8fbaf9 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonLividFinder.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonLividFinder.kt @@ -7,7 +7,6 @@ import at.hannibal2.skyhanni.events.LorenzTickEvent import at.hannibal2.skyhanni.events.LorenzWorldChangeEvent import at.hannibal2.skyhanni.mixins.hooks.RenderLivingEntityHelper import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule -import at.hannibal2.skyhanni.test.GriffinUtils.drawWaypointFilled import at.hannibal2.skyhanni.test.command.ErrorManager import at.hannibal2.skyhanni.utils.BlockUtils.getBlockStateAt import at.hannibal2.skyhanni.utils.ColorUtils.withAlpha @@ -18,6 +17,7 @@ import at.hannibal2.skyhanni.utils.LorenzColor.Companion.toLorenzColor import at.hannibal2.skyhanni.utils.LorenzVec import at.hannibal2.skyhanni.utils.RenderUtils.draw3DLine import at.hannibal2.skyhanni.utils.RenderUtils.drawDynamicText +import at.hannibal2.skyhanni.utils.RenderUtils.drawWaypointFilled import at.hannibal2.skyhanni.utils.RenderUtils.exactPlayerEyeLocation import at.hannibal2.skyhanni.utils.getLorenzVec import net.minecraft.block.BlockStainedGlass |