From 20b1d741db61194c8dd43edb59d82e0c8a9cd3d1 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 28 Oct 2023 00:15:55 +0200 Subject: created and used Entity.canBeSeen and LorenzVec.canBeSeen --- .../hannibal2/skyhanni/features/rift/everywhere/motes/RiftMotesOrb.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features/rift') 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" -- cgit