diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2023-06-19 21:39:11 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-19 21:39:11 +1000 |
commit | da2d2def82ac819dbfa9457b0eb180bba4491278 (patch) | |
tree | 561a70b4089def74da0d7019d0629fc3ae5d362c /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | |
parent | 54cbf2fc5177ffc6b219a72be8032789ff3514b7 (diff) | |
parent | 24ac5fb6dbdb793ce0eeac92c80c24f64f0868de (diff) | |
download | skyhanni-da2d2def82ac819dbfa9457b0eb180bba4491278.tar.gz skyhanni-da2d2def82ac819dbfa9457b0eb180bba4491278.tar.bz2 skyhanni-da2d2def82ac819dbfa9457b0eb180bba4491278.zip |
Merge branch 'beta' into frozen_treasure_tracker
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index aaa3231f6..5eb0eec1b 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -12,6 +12,7 @@ import at.hannibal2.skyhanni.features.bazaar.BazaarBestSellMethod import at.hannibal2.skyhanni.features.bazaar.BazaarCancelledBuyOrderClipboard import at.hannibal2.skyhanni.features.bazaar.BazaarOrderHelper import at.hannibal2.skyhanni.features.bingo.* +import at.hannibal2.skyhanni.features.chat.ArachneChatMessageHider import at.hannibal2.skyhanni.features.chat.ChatFilter import at.hannibal2.skyhanni.features.chat.PlayerDeathMessages import at.hannibal2.skyhanni.features.chat.playerchat.PlayerChatFilter @@ -42,7 +43,6 @@ import at.hannibal2.skyhanni.features.minion.MinionCollectLogic import at.hannibal2.skyhanni.features.minion.MinionFeatures import at.hannibal2.skyhanni.features.misc.* import at.hannibal2.skyhanni.features.misc.discordrpc.DiscordRPCManager -import at.hannibal2.skyhanni.features.misc.GhostCounter import at.hannibal2.skyhanni.features.misc.items.EstimatedItemValue import at.hannibal2.skyhanni.features.misc.items.EstimatedWardrobePrice import at.hannibal2.skyhanni.features.misc.tabcomplete.PlayerTabComplete @@ -94,7 +94,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.18.Beta.20", + version = "0.18.Beta.21", ) class SkyHanniMod { @Mod.EventHandler @@ -296,8 +296,10 @@ class SkyHanniMod { loadModule(DetectBrokenHyperion()) loadModule(RestorePieceOfWizardPortalLore()) loadModule(QuickModMenuSwitch) + loadModule(ArachneChatMessageHider()) loadModule(ShowItemUuid()) loadModule(FrozenTreasureTracker()) + loadModule(SlayerRngMeterDisplay()) loadModule(GhostCounter) init() |