From cfa9dff0c90be83ab219db10ef08abb8c6aabca0 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 18 Feb 2023 22:54:58 +0100 Subject: Added Visitor Timer. --- src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 4 ++++ 1 file changed, 4 insertions(+) (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 a848ab072..5fde02e86 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -25,6 +25,7 @@ import at.hannibal2.skyhanni.features.event.diana.SoopyGuessBurrow; import at.hannibal2.skyhanni.features.fishing.*; import at.hannibal2.skyhanni.features.garden.GardenInventoryNumbers; import at.hannibal2.skyhanni.features.garden.GardenVisitorFeatures; +import at.hannibal2.skyhanni.features.garden.GardenVisitorTimer; import at.hannibal2.skyhanni.features.garden.SkyMartBestProfit; import at.hannibal2.skyhanni.features.inventory.*; import at.hannibal2.skyhanni.features.itemabilities.FireVeilWandParticles; @@ -52,6 +53,7 @@ import at.hannibal2.skyhanni.mixins.hooks.RenderLivingEntityHelper; import at.hannibal2.skyhanni.test.LorenzTest; import at.hannibal2.skyhanni.test.PacketTest; import at.hannibal2.skyhanni.utils.MinecraftConsoleFilter; +import at.hannibal2.skyhanni.utils.TabListData; import kotlin.coroutines.EmptyCoroutineContext; import kotlinx.coroutines.*; import net.minecraft.client.Minecraft; @@ -112,6 +114,7 @@ public class SkyHanniMod { loadModule(new RenderLivingEntityHelper()); loadModule(new SkillExperience()); loadModule(new InventoryData()); + loadModule(new TabListData()); //features loadModule(new BazaarOrderHelper()); @@ -201,6 +204,7 @@ public class SkyHanniMod { loadModule(new SkyMartBestProfit()); loadModule(new GardenVisitorFeatures()); loadModule(new GardenInventoryNumbers()); + loadModule(new GardenVisitorTimer()); Commands.INSTANCE.init(); -- cgit