diff options
author | appable <enzospiacitelli@gmail.com> | 2023-12-16 03:13:06 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-16 12:13:06 +0100 |
commit | cdcc7b35e38ddb5e00d8a4d900c4cad77bd6e1f5 (patch) | |
tree | 89ec49b38cbb17a758375454de6c546d6b333d93 /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | |
parent | f2711d19b3a727eb0f204d064f49cb7355540282 (diff) | |
download | skyhanni-cdcc7b35e38ddb5e00d8a4d900c4cad77bd6e1f5.tar.gz skyhanni-cdcc7b35e38ddb5e00d8a4d900c4cad77bd6e1f5.tar.bz2 skyhanni-cdcc7b35e38ddb5e00d8a4d900c4cad77bd6e1f5.zip |
Feature: Active spray display and expiry notification (#800)
Added Spray Display and Spray Expiration Notice. #800
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 0a8e08ce5..7bcf31f72 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -185,6 +185,7 @@ import at.hannibal2.skyhanni.features.garden.inventory.SkyMartCopperPrice import at.hannibal2.skyhanni.features.garden.pests.PestFinder import at.hannibal2.skyhanni.features.garden.pests.PestSpawn import at.hannibal2.skyhanni.features.garden.pests.PestSpawnTimer +import at.hannibal2.skyhanni.features.garden.pests.SprayDisplay import at.hannibal2.skyhanni.features.garden.pests.SprayFeatures import at.hannibal2.skyhanni.features.garden.visitor.GardenVisitorColorNames import at.hannibal2.skyhanni.features.garden.visitor.GardenVisitorDropStatistics @@ -675,6 +676,7 @@ class SkyHanniMod { loadModule(PestSpawnTimer) loadModule(PestFinder()) loadModule(SprayFeatures()) + loadModule(SprayDisplay()) loadModule(HighlightPlaceableNpcs()) loadModule(PresentWaypoints()) loadModule(JyrreTimer()) |