aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2
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
commit8d6719dc19d9def0365d6b421ef3168a2cd0782e (patch)
treef313295d14a8a46b917e7c1600f0e0e3beac8139 /src/main/java/at/hannibal2
parent28d4336b8f2d45f1aa82f9a1d4e48038e0044c69 (diff)
downloadskyhanni-8d6719dc19d9def0365d6b421ef3168a2cd0782e.tar.gz
skyhanni-8d6719dc19d9def0365d6b421ef3168a2cd0782e.tar.bz2
skyhanni-8d6719dc19d9def0365d6b421ef3168a2cd0782e.zip
add fire pits warning support for t4
Diffstat (limited to 'src/main/java/at/hannibal2')
-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,