diff options
author | Ghost <66458557+Ghost-3@users.noreply.github.com> | 2024-02-19 07:20:23 +0300 |
---|---|---|
committer | Ghost <66458557+Ghost-3@users.noreply.github.com> | 2024-02-19 07:20:23 +0300 |
commit | b96921dad617a4cc1fd36b6529596c1391f43f55 (patch) | |
tree | 01396c31ac0df3521ea9616748ade8c521e226bc /src/main/java/de/hysky | |
parent | ed48570bc262bf0a9ebe2e3a629d389ee22fd3fe (diff) | |
download | Skyblocker-b96921dad617a4cc1fd36b6529596c1391f43f55.tar.gz Skyblocker-b96921dad617a4cc1fd36b6529596c1391f43f55.tar.bz2 Skyblocker-b96921dad617a4cc1fd36b6529596c1391f43f55.zip |
Added Broodmother states
Diffstat (limited to 'src/main/java/de/hysky')
-rw-r--r-- | src/main/java/de/hysky/skyblocker/skyblock/tabhud/widget/SpidersDenServerWidget.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/de/hysky/skyblocker/skyblock/tabhud/widget/SpidersDenServerWidget.java b/src/main/java/de/hysky/skyblocker/skyblock/tabhud/widget/SpidersDenServerWidget.java index 386e60ec..6751ea5d 100644 --- a/src/main/java/de/hysky/skyblocker/skyblock/tabhud/widget/SpidersDenServerWidget.java +++ b/src/main/java/de/hysky/skyblocker/skyblock/tabhud/widget/SpidersDenServerWidget.java @@ -22,7 +22,9 @@ public class SpidersDenServerWidget extends Widget { private enum BroodmotherState { SOON("Soon", Formatting.GOLD), AWAKENING("Awakening", Formatting.GOLD), + IMMINENT("Imminent", Formatting.DARK_RED), ALIVE("Alive!", Formatting.DARK_RED), + SLAIN("Slain", Formatting.YELLOW), DORMANT("Dormant", Formatting.YELLOW), UNKNOWN("Unknown", Formatting.GRAY); @@ -80,7 +82,6 @@ public class SpidersDenServerWidget extends Widget { this.addSimpleIcoText(Ico.EMERALD, "Gems:", Formatting.GREEN, 43); BroodmotherState broodmotherState = parseTab(); - this.addSimpleIcoText( - Ico.SPIDER_EYE, "Broodmother: ", broodmotherState.formatting(), broodmotherState.text()); + this.addSimpleIcoText(Ico.SPIDER_EYE, "Broodmother: ", broodmotherState.formatting(), broodmotherState.text()); } } |