From 1d35ee709c4a0876fbc8e814d959659b37710ce8 Mon Sep 17 00:00:00 2001 From: J10a1n15 <45315647+j10a1n15@users.noreply.github.com> Date: Thu, 13 Jun 2024 20:49:23 +0200 Subject: Improvement: Added Display Options to Powder in Custom Scoreboard (#1442) * input some data * working * added full storage support, copy tree, powder and tokens * test * improved the rewardFun * rename of file * made feature separate * fix * fix * Revert "test" This reverts commit 2ed9de7e4c0c2620ea0acbbbb20ffc964c14257f. * max level hide * fixed missing new line * updated format * . * Mining V3 * fix * improved * Removed tablist pattern * fix Signed-off-by: J10a1n15 <45315647+j10a1n15@users.noreply.github.com> * fixc Signed-off-by: J10a1n15 <45315647+j10a1n15@users.noreply.github.com> * cleanup Signed-off-by: J10a1n15 <45315647+j10a1n15@users.noreply.github.com> * removed triples and pairs * small code cleanup * big reformat --------- Signed-off-by: J10a1n15 <45315647+j10a1n15@users.noreply.github.com> Co-authored-by: Thunderblade73 Co-authored-by: Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com> Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- src/main/java/at/hannibal2/skyhanni/api/HotmAPI.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/api') diff --git a/src/main/java/at/hannibal2/skyhanni/api/HotmAPI.kt b/src/main/java/at/hannibal2/skyhanni/api/HotmAPI.kt index edf1d7c84..38c901c85 100644 --- a/src/main/java/at/hannibal2/skyhanni/api/HotmAPI.kt +++ b/src/main/java/at/hannibal2/skyhanni/api/HotmAPI.kt @@ -30,10 +30,10 @@ object HotmAPI { } } == true - enum class Powder() { - MITHRIL, - GEMSTONE, - GLACITE, + enum class Powder(val displayName: String, val color: String) { + MITHRIL("Mithril", "§2"), + GEMSTONE("Gemstone", "§d"), + GLACITE("Glacite", "§b"), ; -- cgit