aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/misc
diff options
context:
space:
mode:
authorLuna <luna@alexia.lol>2024-08-17 09:30:23 +0200
committerGitHub <noreply@github.com>2024-08-17 09:30:23 +0200
commita4a6c98a60e9b994d953afa2c7481c2dd67d8de6 (patch)
tree347a3abce2cd3b6a6892c720c6fced9d9a47606a /src/main/java/at/hannibal2/skyhanni/features/misc
parent46dcf1a9050deb7bab8e834e91ae39e818ac507d (diff)
downloadskyhanni-a4a6c98a60e9b994d953afa2c7481c2dd67d8de6.tar.gz
skyhanni-a4a6c98a60e9b994d953afa2c7481c2dd67d8de6.tar.bz2
skyhanni-a4a6c98a60e9b994d953afa2c7481c2dd67d8de6.zip
Fix: Finnegan Perks (#2359)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/misc')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorFeatures.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorFeatures.kt
index 65d4219f2..e2dac0f4c 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorFeatures.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorFeatures.kt
@@ -4,6 +4,7 @@ import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.config.ConfigUpdaterMigrator
import at.hannibal2.skyhanni.config.features.misc.TrevorTheTrapperConfig.TrackerEntry
import at.hannibal2.skyhanni.data.IslandType
+import at.hannibal2.skyhanni.data.Perk
import at.hannibal2.skyhanni.events.CheckRenderEntityEvent
import at.hannibal2.skyhanni.events.GuiRenderEvent
import at.hannibal2.skyhanni.events.LorenzChatEvent
@@ -12,7 +13,6 @@ import at.hannibal2.skyhanni.events.LorenzRenderWorldEvent
import at.hannibal2.skyhanni.events.LorenzTickEvent
import at.hannibal2.skyhanni.events.LorenzWorldChangeEvent
import at.hannibal2.skyhanni.events.SecondPassedEvent
-import at.hannibal2.skyhanni.features.garden.farming.GardenCropSpeed
import at.hannibal2.skyhanni.mixins.hooks.RenderLivingEntityHelper
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.utils.ColorUtils.withAlpha
@@ -144,7 +144,7 @@ object TrevorFeatures {
}
trapperPattern.matchMatcher(formattedMessage) {
- timeUntilNextReady = if (GardenCropSpeed.finneganPerkActive()) 16 else 21
+ timeUntilNextReady = if (Perk.PELT_POCALYPSE.isActive) 16 else 21
currentStatus = TrapperStatus.ACTIVE
currentLabel = "§cActive Quest"
trapperReady = false