aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-16 20:31:04 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-16 20:31:04 +0100
commit07351036391533533cd059ef6910c6bc1efeb36f (patch)
tree723c655ac358227b98548a4e81f1eafd00636265 /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java
parent67011d64534f855959ab33abc56e83eec713e924 (diff)
downloadSkyHanni-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.java3
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();