aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni
diff options
context:
space:
mode:
authorEmily <yhtez@protonmail.com>2024-05-03 13:27:19 +0100
committerGitHub <noreply@github.com>2024-05-03 14:27:19 +0200
commit0d189dca73408e9fc1976cdbecf8e6bff679ff86 (patch)
tree9ef447132c5115e881a0e829ea391cab10fe233c /src/main/java/at/hannibal2/skyhanni
parente764894667a52c0774d9fee5ecf84bb00772b73d (diff)
downloadskyhanni-0d189dca73408e9fc1976cdbecf8e6bff679ff86.tar.gz
skyhanni-0d189dca73408e9fc1976cdbecf8e6bff679ff86.tar.bz2
skyhanni-0d189dca73408e9fc1976cdbecf8e6bff679ff86.zip
Fix: Breakfast and Dinner Egg incorrect colors (#1664)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggType.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggType.kt b/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggType.kt
index 086b13029..83d335cb1 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggType.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggType.kt
@@ -11,9 +11,9 @@ enum class HoppityEggType(
var lastResetDay: Int = -1,
private var claimed: Boolean = false,
) {
- BREAKFAST("Breakfast", 7, "§a"),
+ BREAKFAST("Breakfast", 7, "§6"),
LUNCH("Lunch", 14, "§9"),
- DINNER("Dinner", 21, "§6"),
+ DINNER("Dinner", 21, "§a"),
;
fun timeUntil(): Duration {