From f3799c580bcb6b7c6d139796f2dc8b84c7b0e644 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sun, 16 Apr 2023 00:41:34 +0200 Subject: Added Inventory Numbers - Show the number of the teleport pads inside the 'Change Destination' inventory as stack size --- src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java') diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index 100076625..b645d6e69 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -32,10 +32,7 @@ import at.hannibal2.skyhanni.features.garden.composter.ComposterDisplay; import at.hannibal2.skyhanni.features.garden.composter.ComposterInventoryNumbers; import at.hannibal2.skyhanni.features.garden.composter.GardenComposterInventoryFeatures; import at.hannibal2.skyhanni.features.garden.farming.*; -import at.hannibal2.skyhanni.features.garden.inventory.GardenDeskInSBMenu; -import at.hannibal2.skyhanni.features.garden.inventory.GardenInventoryNumbers; -import at.hannibal2.skyhanni.features.garden.inventory.GardenNextPlotPrice; -import at.hannibal2.skyhanni.features.garden.inventory.SkyMartCopperPrice; +import at.hannibal2.skyhanni.features.garden.inventory.*; import at.hannibal2.skyhanni.features.garden.visitor.GardenVisitorColorNames; import at.hannibal2.skyhanni.features.garden.visitor.GardenVisitorFeatures; import at.hannibal2.skyhanni.features.garden.visitor.GardenVisitorTimer; @@ -271,6 +268,7 @@ public class SkyHanniMod { loadModule(new ToolTooltipTweaks()); loadModule(new CropSpeedMeter()); loadModule(new AshfangMinisNametagHider()); + loadModule(new GardenTeleportPadInventoryNumber()); Commands.INSTANCE.init(); -- cgit