diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-16 20:31:04 +0100 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-16 20:31:04 +0100 |
| commit | 07351036391533533cd059ef6910c6bc1efeb36f (patch) | |
| tree | 723c655ac358227b98548a4e81f1eafd00636265 /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | |
| parent | 67011d64534f855959ab33abc56e83eec713e924 (diff) | |
| download | SkyHanni-07351036391533533cd059ef6910c6bc1efeb36f.tar.gz SkyHanni-07351036391533533cd059ef6910c6bc1efeb36f.tar.bz2 SkyHanni-07351036391533533cd059ef6910c6bc1efeb36f.zip | |
Show copper to coin prices inside the Sky Mart inventory.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index e83191ceb..998185755 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -23,6 +23,7 @@ import at.hannibal2.skyhanni.features.event.diana.GriffinBurrowHelper; import at.hannibal2.skyhanni.features.event.diana.GriffinBurrowParticleFinder; import at.hannibal2.skyhanni.features.event.diana.SoopyGuessBurrow; import at.hannibal2.skyhanni.features.fishing.*; +import at.hannibal2.skyhanni.features.garden.SkyMartBestProfit; import at.hannibal2.skyhanni.features.inventory.*; import at.hannibal2.skyhanni.features.itemabilities.FireVeilWandParticles; import at.hannibal2.skyhanni.features.itemabilities.abilitycooldown.ItemAbilityCooldown; @@ -108,6 +109,7 @@ public class SkyHanniMod { loadModule(new ItemTipHelper()); loadModule(new RenderLivingEntityHelper()); loadModule(new SkillExperience()); + loadModule(new InventoryData()); //features loadModule(new BazaarOrderHelper()); @@ -194,6 +196,7 @@ public class SkyHanniMod { loadModule(new TpsCounter()); loadModule(new ParticleHider()); loadModule(new MiscFeatures()); + loadModule(new SkyMartBestProfit()); Commands.INSTANCE.init(); |
