diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-28 19:34:18 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-28 19:34:18 +0200 |
commit | b649d65c7597ff3a2174ab752143b997cddebf40 (patch) | |
tree | 5cbc196bfa74f53efc4d9f1f7d555cf93c9e0366 /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | |
parent | d4e51f2a49d267290f2cf5e0065ca3ffa8531d04 (diff) | |
download | skyhanni-b649d65c7597ff3a2174ab752143b997cddebf40.tar.gz skyhanni-b649d65c7597ff3a2174ab752143b997cddebf40.tar.bz2 skyhanni-b649d65c7597ff3a2174ab752143b997cddebf40.zip |
FF for Contest - Show the minimum needed Farming Fortune for reaching a medal in the Jacob's Farming Contest inventory
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index 4707bf5eb..66452e7e2 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -32,6 +32,9 @@ import at.hannibal2.skyhanni.features.garden.composter.ComposterDisplay; import at.hannibal2.skyhanni.features.garden.composter.ComposterInventoryNumbers; import at.hannibal2.skyhanni.features.garden.composter.ComposterOverlay; import at.hannibal2.skyhanni.features.garden.composter.GardenComposterInventoryFeatures; +import at.hannibal2.skyhanni.features.garden.contest.FarmingContestAPI; +import at.hannibal2.skyhanni.features.garden.contest.JacobContestFFNeededDisplay; +import at.hannibal2.skyhanni.features.garden.contest.JacobFarmingContestsInventory; import at.hannibal2.skyhanni.features.garden.farming.*; import at.hannibal2.skyhanni.features.garden.inventory.*; import at.hannibal2.skyhanni.features.garden.visitor.GardenVisitorColorNames; @@ -157,6 +160,7 @@ public class SkyHanniMod { loadModule(new BazaarApi()); loadModule(GardenAPI.INSTANCE); loadModule(new CollectionAPI()); + loadModule(FarmingContestAPI.INSTANCE); // features loadModule(new BazaarOrderHelper()); @@ -280,6 +284,7 @@ public class SkyHanniMod { loadModule(new GardenCropMilestoneFix()); loadModule(new GardenBurrowingSporesNotifier()); loadModule(new WildStrawberryDyeNotification()); + loadModule(new JacobContestFFNeededDisplay()); Commands.INSTANCE.init(); |