diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-12 01:32:18 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-12 01:32:18 +0100 |
commit | 411fde4bf782de1045d3339e04dabf912f50578d (patch) | |
tree | 238e063f5d14058ced102868a2e2f0f990b7ba88 /src/main/java | |
parent | 98ef101e9bb436be74af9f5d2b1ee6bb9ebefa4a (diff) | |
download | skyhanni-411fde4bf782de1045d3339e04dabf912f50578d.tar.gz skyhanni-411fde4bf782de1045d3339e04dabf912f50578d.tar.bz2 skyhanni-411fde4bf782de1045d3339e04dabf912f50578d.zip |
Revert "Only showing the closest 25 start burrow locations."
This reverts commit 98ef101e9bb436be74af9f5d2b1ee6bb9ebefa4a.
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt index d631147eb..14422e6b4 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt @@ -8,7 +8,6 @@ import at.hannibal2.skyhanni.events.BurrowDugEvent import at.hannibal2.skyhanni.events.EntityMoveEvent import at.hannibal2.skyhanni.events.LorenzChatEvent import at.hannibal2.skyhanni.events.LorenzRenderWorldEvent -import at.hannibal2.skyhanni.events.LorenzTickEvent import at.hannibal2.skyhanni.events.LorenzWorldChangeEvent import at.hannibal2.skyhanni.events.SoopyGuessBurrowEvent import at.hannibal2.skyhanni.utils.BlockUtils.getBlockAt @@ -18,7 +17,6 @@ import at.hannibal2.skyhanni.utils.LocationUtils.distanceToPlayer import at.hannibal2.skyhanni.utils.LorenzColor import at.hannibal2.skyhanni.utils.LorenzUtils import at.hannibal2.skyhanni.utils.LorenzUtils.editCopy -import at.hannibal2.skyhanni.utils.LorenzUtils.sorted import at.hannibal2.skyhanni.utils.LorenzVec import at.hannibal2.skyhanni.utils.RenderUtils.draw3DLine import at.hannibal2.skyhanni.utils.RenderUtils.drawColor @@ -42,7 +40,6 @@ object GriffinBurrowHelper { private var teleportedLocation: LorenzVec? = null private var lastGuessTime = 0L private var lastAnimationTime = 0L - private var burrowsTooFarAway = emptyList<LorenzVec>() @SubscribeEvent fun onSoopyGuessBurrow(event: SoopyGuessBurrowEvent) { @@ -68,41 +65,15 @@ object GriffinBurrowHelper { } @SubscribeEvent - fun onTick(event: LorenzTickEvent) { - if (event.repeatSeconds(2)) { - val max = 25 - if (particleBurrows.size > max) { - var index = 0 - val list = particleBurrows.map { it.key to it.key.distanceToPlayer() }.sorted().map { it.first } - val newHiddenList = mutableListOf<LorenzVec>() - for (vec in list) { - index++ - if (index > max) { - newHiddenList.add(vec) - } - } - burrowsTooFarAway = newHiddenList - } - } else { - burrowsTooFarAway = emptyList() - } - } - - @SubscribeEvent fun onBurrowDetect(event: BurrowDetectEvent) { EntityMovementData.addToTrack(Minecraft.getMinecraft().thePlayer) particleBurrows = particleBurrows.editCopy { this[event.burrowLocation] = event.type } - burrowUpdate() if (config.burrowsNearbyDetection) { checkRemoveGuess(true) } } - private fun burrowUpdate() { - - } - private fun checkRemoveGuess(animation: Boolean) { guessLocation?.let { guessRaw -> val guess = findBlock(guessRaw) @@ -119,7 +90,6 @@ object GriffinBurrowHelper { fun onBurrowDug(event: BurrowDugEvent) { val location = event.burrowLocation particleBurrows = particleBurrows.editCopy { remove(location) } - burrowUpdate() if (particleBurrows.isNotEmpty()) { animationLocation = location } @@ -139,7 +109,6 @@ object GriffinBurrowHelper { if (!DianaAPI.featuresEnabled()) return if (event.message.startsWith("§c ☠ §r§7You were killed by §r")) { particleBurrows = particleBurrows.editCopy { keys.removeIf { this[it] == BurrowType.MOB } } - burrowUpdate() } } @@ -150,7 +119,6 @@ object GriffinBurrowHelper { animationLocation = null lastDug = null particleBurrows = particleBurrows.editCopy { clear() } - burrowUpdate() } private fun findBlock(point: LorenzVec): LorenzVec { @@ -213,8 +181,6 @@ object GriffinBurrowHelper { if (config.burrowsNearbyDetection) { for (burrow in particleBurrows) { val location = burrow.key - if (location in burrowsTooFarAway && burrow.value == BurrowType.START) continue - val distance = location.distance(playerLocation) val burrowType = burrow.value event.drawColor(location, burrowType.color, distance > 10) |