diff options
author | Linnea Gräf <nea@nea.moe> | 2024-04-28 12:16:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-28 12:16:58 +0200 |
commit | cf72b7981903814f1a6afb5c1f9edcb9e1b7024a (patch) | |
tree | 363cd8446b98eb11f21ed76369bb8039c84419ff /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | |
parent | 7467e9f16f84f7e1f77b5a91914c54d3a34c5097 (diff) | |
download | skyhanni-cf72b7981903814f1a6afb5c1f9edcb9e1b7024a.tar.gz skyhanni-cf72b7981903814f1a6afb5c1f9edcb9e1b7024a.tar.bz2 skyhanni-cf72b7981903814f1a6afb5c1f9edcb9e1b7024a.zip |
Fix party tab completion (#1571)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index e46db663d..33d7cdbe9 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -101,6 +101,7 @@ import at.hannibal2.skyhanni.features.commands.WarpIsCommand import at.hannibal2.skyhanni.features.commands.WikiManager import at.hannibal2.skyhanni.features.commands.tabcomplete.GetFromSacksTabComplete import at.hannibal2.skyhanni.features.commands.tabcomplete.PlayerTabComplete +import at.hannibal2.skyhanni.features.commands.tabcomplete.TabComplete import at.hannibal2.skyhanni.features.commands.tabcomplete.WarpTabComplete import at.hannibal2.skyhanni.features.cosmetics.ArrowTrail import at.hannibal2.skyhanni.features.cosmetics.CosmeticFollowingLine @@ -530,6 +531,7 @@ class SkyHanniMod { loadModule(FixedRateTimerManager()) loadModule(ChromaManager) loadModule(ContributorManager) + loadModule(TabComplete) // APIs loadModule(BazaarApi()) |