aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-02-26 19:00:05 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-02-26 19:00:05 +0100
commited6c0f5d1cb564d29086efdffdf3cacf53466db3 (patch)
treee0a4973b024f76a5cb99a6e06c2ffb53db477069 /src
parent7b84d0094777fdd931b56fc34467973b60fea1f6 (diff)
downloadskyhanni-ed6c0f5d1cb564d29086efdffdf3cacf53466db3.tar.gz
skyhanni-ed6c0f5d1cb564d29086efdffdf3cacf53466db3.tar.bz2
skyhanni-ed6c0f5d1cb564d29086efdffdf3cacf53466db3.zip
Changed the Diana Guess Waypoint word color to only be in blue when actually warping to the nearest warp.
Diffstat (limited to 'src')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt
index 4d839fc21..94145eaca 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt
@@ -265,7 +265,7 @@ object GriffinBurrowHelper {
val guessLocation = findBlock(it)
val distance = guessLocation.distance(playerLocation)
event.drawColor(guessLocation, LorenzColor.WHITE, distance > 10)
- val color = if (currentWarp == null) "§f" else "§b"
+ val color = if (currentWarp != null && targetLocation == guessLocation) "§b" else "§f"
event.drawDynamicText(guessLocation.add(y = 1), "${color}Guess", 1.5)
if (distance > 5) {
val formattedDistance = LorenzUtils.formatInteger(distance.toInt())