diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-02 17:27:12 +0200 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-02 17:27:12 +0200 |
| commit | ae4af78e29efb97d8898d6cf8d1e817357412bb0 (patch) | |
| tree | 47258303140f8f3d85fa43326a506feb584ef534 /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | |
| parent | ab8176beeadad04c4bc34ab57cdf66a459a076c3 (diff) | |
| download | SkyHanni-ae4af78e29efb97d8898d6cf8d1e817357412bb0.tar.gz SkyHanni-ae4af78e29efb97d8898d6cf8d1e817357412bb0.tar.bz2 SkyHanni-ae4af78e29efb97d8898d6cf8d1e817357412bb0.zip | |
Counting items in inventory and from minions to the bingo step helper collection goal display
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index 7c06076de..be749d95a 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -28,6 +28,7 @@ import at.hannibal2.skyhanni.features.garden.*; import at.hannibal2.skyhanni.features.inventory.*; import at.hannibal2.skyhanni.features.itemabilities.FireVeilWandParticles; import at.hannibal2.skyhanni.features.itemabilities.abilitycooldown.ItemAbilityCooldown; +import at.hannibal2.skyhanni.features.minion.MinionCollectLogic; import at.hannibal2.skyhanni.features.minion.MinionFeatures; import at.hannibal2.skyhanni.features.misc.*; import at.hannibal2.skyhanni.features.misc.tiarelay.TiaRelayHelper; @@ -116,7 +117,7 @@ public class SkyHanniMod { loadModule(new ItemTipHelper()); loadModule(new RenderLivingEntityHelper()); loadModule(new SkillExperience()); - loadModule(new InventoryData()); + loadModule(new OtherInventoryData()); loadModule(new TabListData()); loadModule(new RenderGuiData()); loadModule(new GardenCropMilestones()); @@ -238,6 +239,7 @@ public class SkyHanniMod { loadModule(new AnitaMedalProfit()); loadModule(new ComposterDisplay()); loadModule(new GardenComposterInventoryFeatures()); + loadModule(new MinionCollectLogic()); Commands.INSTANCE.init(); |
