diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-26 18:17:10 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-26 18:17:10 +0200 |
commit | 51cfe4de8e902e614ea73627fce7d34eabea2e62 (patch) | |
tree | 5f3da71724052c61ad2c08e112a86337971bcfd2 /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | |
parent | 4416d272a774be2afd89cf5fbe05595d41349fc7 (diff) | |
download | skyhanni-51cfe4de8e902e614ea73627fce7d34eabea2e62.tar.gz skyhanni-51cfe4de8e902e614ea73627fce7d34eabea2e62.tar.bz2 skyhanni-51cfe4de8e902e614ea73627fce7d34eabea2e62.zip |
Added support for tab completing the items with recipe in Hypixel command /viewrecipe.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 45042af50..76b3c0aa1 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -69,9 +69,9 @@ import at.hannibal2.skyhanni.features.combat.mobs.MobHighlight import at.hannibal2.skyhanni.features.combat.mobs.SpawnTimers import at.hannibal2.skyhanni.features.commands.PartyCommands import at.hannibal2.skyhanni.features.commands.SendCoordinatedCommand +import at.hannibal2.skyhanni.features.commands.ViewRecipeCommand import at.hannibal2.skyhanni.features.commands.WarpIsCommand import at.hannibal2.skyhanni.features.commands.WikiCommand -import at.hannibal2.skyhanni.features.commands.ViewRecipeCommand import at.hannibal2.skyhanni.features.commands.tabcomplete.GetFromSacksTabComplete import at.hannibal2.skyhanni.features.commands.tabcomplete.PlayerTabComplete import at.hannibal2.skyhanni.features.commands.tabcomplete.WarpTabComplete @@ -421,7 +421,7 @@ class SkyHanniMod { loadModule(WikiCommand()) loadModule(SendCoordinatedCommand()) loadModule(WarpIsCommand()) - loadModule(ViewRecipeCommand()) + loadModule(ViewRecipeCommand) loadModule(PartyCommands) loadModule(SummoningMobManager()) loadModule(AreaMiniBossFeatures()) |