diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-16 14:38:12 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-16 14:38:12 +0200 |
commit | 96de0a0c8925cb9a75e2108c8997625bcac2f7ff (patch) | |
tree | 8469257a41ed637fd8f0e30a68b347f05423c387 /src | |
parent | fb04bfb0af39773dd3d60ba9a0a98fa57e6f4efb (diff) | |
download | skyhanni-96de0a0c8925cb9a75e2108c8997625bcac2f7ff.tar.gz skyhanni-96de0a0c8925cb9a75e2108c8997625bcac2f7ff.tar.bz2 skyhanni-96de0a0c8925cb9a75e2108c8997625bcac2f7ff.zip |
small fix
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHideItems.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHideItems.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHideItems.kt index ceec6103c..6fbc542c0 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHideItems.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHideItems.kt @@ -211,7 +211,7 @@ class DungeonHideItems { if (entity is EntityArmorStand) { if (isSkeletonSkull(entity)) { val lastMove = movingSkeletonSkulls.getOrDefault(entity, 0) - if (lastMove + 100 > System.currentTimeMillis()) { + if (lastMove + 200 > System.currentTimeMillis()) { event.color = LorenzColor.GOLD.toColor().withAlpha(60) } } |