diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-03 13:33:37 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-03 13:33:37 +0200 |
commit | d9ed920bd5cf488934a18258c51c2b7501d4c71f (patch) | |
tree | 9254d01be5ef509f0cbb1c1e34be6cae5e1eeda0 /src/main/java/at/hannibal2/skyhanni/features/slayer | |
parent | a36437c604a8eee5f15c26042c54ad8a41520fa0 (diff) | |
download | skyhanni-d9ed920bd5cf488934a18258c51c2b7501d4c71f.tar.gz skyhanni-d9ed920bd5cf488934a18258c51c2b7501d4c71f.tar.bz2 skyhanni-d9ed920bd5cf488934a18258c51c2b7501d4c71f.zip |
reverted my list -> sequence changes in entity utils as they causing lots of problems
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/slayer')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/slayer/enderman/EndermanSlayerHideParticles.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/slayer/enderman/EndermanSlayerHideParticles.kt b/src/main/java/at/hannibal2/skyhanni/features/slayer/enderman/EndermanSlayerHideParticles.kt index 58ef50f08..d6ae27f3b 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/slayer/enderman/EndermanSlayerHideParticles.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/slayer/enderman/EndermanSlayerHideParticles.kt @@ -20,7 +20,7 @@ class EndermanSlayerHideParticles { fun onTick(event: LorenzTickEvent) { if (!isEnabled()) return - endermanLocations = EntityUtils.getEntities<EntityEnderman>().map { it.getLorenzVec() }.toList() + endermanLocations = EntityUtils.getEntities<EntityEnderman>().map { it.getLorenzVec() } } @SubscribeEvent |