aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-09-24 20:52:51 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-09-24 20:52:51 +0200
commita449f11e6b24c2d88f4849409265b33dc9cbbd3c (patch)
treef313295d14a8a46b917e7c1600f0e0e3beac8139
parentebce6c1e1739b5846aa2fa8d3653d0645ecbe973 (diff)
downloadSkyHanni-a449f11e6b24c2d88f4849409265b33dc9cbbd3c.tar.gz
SkyHanni-a449f11e6b24c2d88f4849409265b33dc9cbbd3c.tar.bz2
SkyHanni-a449f11e6b24c2d88f4849409265b33dc9cbbd3c.zip
add fire pits warning support for t4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java3
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/slayer/blaze/BlazeSlayerFirePitsWarning.kt6
2 files changed, 3 insertions, 6 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java b/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java
index e2110df42..531bc10da 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java
@@ -42,8 +42,7 @@ public class Slayer {
public boolean blazeDaggers = false;
@Expose
- //TODO Blaze Slayer tier 4
- @ConfigOption(name = "Fire Pits", desc = "Warning when the fire pit phase starts for the Blaze Slayer tier 3")
+ @ConfigOption(name = "Fire Pits", desc = "Warning when the fire pit phase starts for the Blaze Slayer tier 3 and 4")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean firePitsWarning = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/features/slayer/blaze/BlazeSlayerFirePitsWarning.kt b/src/main/java/at/hannibal2/skyhanni/features/slayer/blaze/BlazeSlayerFirePitsWarning.kt
index c29dc7017..3c02ed472 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/slayer/blaze/BlazeSlayerFirePitsWarning.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/slayer/blaze/BlazeSlayerFirePitsWarning.kt
@@ -53,8 +53,7 @@ class BlazeSlayerFirePitsWarning {
if (lastHealth > percentHealth) {
when (entityData.bossType) {
BossType.SLAYER_BLAZE_3,
- //TODO blaze slayer tier 4
- //BossType.SLAYER_BLAZE_4,
+ BossType.SLAYER_BLAZE_4,
-> {
fireFirePits()
}
@@ -68,8 +67,7 @@ class BlazeSlayerFirePitsWarning {
private fun isEnabled(): Boolean {
return LorenzUtils.inSkyblock && DamageIndicatorManager.isBossSpawned(
BossType.SLAYER_BLAZE_3,
- //TODO blaze slayer tier 4
-// BossType.SLAYER_BLAZE_4,
+ BossType.SLAYER_BLAZE_4,
BossType.SLAYER_BLAZE_QUAZII_3,
BossType.SLAYER_BLAZE_QUAZII_4,
BossType.SLAYER_BLAZE_TYPHOEUS_3,