diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-28 00:15:55 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-28 00:15:55 +0200 |
commit | 20b1d741db61194c8dd43edb59d82e0c8a9cd3d1 (patch) | |
tree | 003e046602202411daedea3dcf56dbcb1f77c4be /src/main/java/at/hannibal2/skyhanni/features/rift | |
parent | 28918c18394210daa121d929d3bfbb48e22a2536 (diff) | |
download | skyhanni-20b1d741db61194c8dd43edb59d82e0c8a9cd3d1.tar.gz skyhanni-20b1d741db61194c8dd43edb59d82e0c8a9cd3d1.tar.bz2 skyhanni-20b1d741db61194c8dd43edb59d82e0c8a9cd3d1.zip |
created and used Entity.canBeSeen and LorenzVec.canBeSeen
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/rift')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/rift/everywhere/motes/RiftMotesOrb.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/rift/everywhere/motes/RiftMotesOrb.kt b/src/main/java/at/hannibal2/skyhanni/features/rift/everywhere/motes/RiftMotesOrb.kt index 55327ccb1..aca97f9e0 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/rift/everywhere/motes/RiftMotesOrb.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/rift/everywhere/motes/RiftMotesOrb.kt @@ -80,7 +80,7 @@ class RiftMotesOrb { orb.pickedUp = true } - val location = orb.location.add(0.0, 0.5, 0.0) + val location = orb.location.add(y = 0.5) val sizeOffset = (5 - config.size) * -0.1 val color = if (orb.pickedUp) LorenzColor.GRAY else LorenzColor.LIGHT_PURPLE val text = color.getChatColor() + "Motes Orb" |