From 49c6158fd11eba3eaa9f69568ea26b5460198025 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 26 Oct 2023 18:37:21 +0200 Subject: code cleanup --- .../skyhanni/features/rift/everywhere/motes/RiftMotesOrb.kt | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features') 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 15273cdc4..38487a88c 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,16 +80,13 @@ class RiftMotesOrb { orb.pickedUp = true } - val location = orb.location - + val location = orb.location.add(0.0, 0.5, 0.0) val sizeOffset = (5 - config.size) * -0.1 if (orb.pickedUp) { - event.drawDynamicText(location.add(0.0, 0.5, 0.0), "§7Motes Orb", 1.5 + sizeOffset, ignoreBlocks = - false) + event.drawDynamicText(location, "§7Motes Orb", 1.5 + sizeOffset, ignoreBlocks = false) event.drawWaypointFilled(location, LorenzColor.GRAY.toColor(), extraSize = sizeOffset) } else { - event.drawDynamicText(location.add(0.0, 0.5, 0.0), "§dMotes Orb", 1.5 + sizeOffset, ignoreBlocks = - false) + event.drawDynamicText(location, "§dMotes Orb", 1.5 + sizeOffset, ignoreBlocks = false) event.drawWaypointFilled(location, LorenzColor.LIGHT_PURPLE.toColor(), extraSize = sizeOffset) } } -- cgit