diff options
| author | J10a1n15 <45315647+j10a1n15@users.noreply.github.com> | 2024-06-13 20:49:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-13 20:49:23 +0200 |
| commit | 1d35ee709c4a0876fbc8e814d959659b37710ce8 (patch) | |
| tree | 7cadcbe91d9c23ab2bf63732c9f22fe5052e96c1 /src/main/java/at/hannibal2/skyhanni/api | |
| parent | 045c39701411b5c9a5ffcbffb45ce34c09f1c2c6 (diff) | |
| download | skyhanni-1d35ee709c4a0876fbc8e814d959659b37710ce8.tar.gz skyhanni-1d35ee709c4a0876fbc8e814d959659b37710ce8.tar.bz2 skyhanni-1d35ee709c4a0876fbc8e814d959659b37710ce8.zip | |
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 <gaidermarkus@gmail.com>
Co-authored-by: Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com>
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/api')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/api/HotmAPI.kt | 8 |
1 files changed, 4 insertions, 4 deletions
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"), ; |
