diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-11 11:02:37 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-11 11:02:37 +0200 |
commit | a601403a2338312fa5be3fff79031ac8c690e9f3 (patch) | |
tree | 09593e76f659ac7888e39c11f599360c18fe5aa6 /src | |
parent | 2e28181c5808edd76114ff035de99bd4b1ed0e40 (diff) | |
download | skyhanni-a601403a2338312fa5be3fff79031ac8c690e9f3.tar.gz skyhanni-a601403a2338312fa5be3fff79031ac8c690e9f3.tar.bz2 skyhanni-a601403a2338312fa5be3fff79031ac8c690e9f3.zip |
Changed trevor trapper cooldown from 60s to 20s without finnegan
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorFeatures.kt | 2 |
1 files changed, 1 insertions, 1 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 90db42ae1..f7fa64628 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 @@ -88,7 +88,7 @@ class TrevorFeatures { var matcher = trapperPattern.matcher(event.message.removeColor()) if (matcher.matches()) { - timeUntilNextReady = if (GardenCropSpeed.finneganPerkActive()) 16 else 61 + timeUntilNextReady = if (GardenCropSpeed.finneganPerkActive()) 16 else 21 currentStatus = TrapperStatus.ACTIVE currentLabel = "§cActive Quest" trapperReady = false |