diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2024-05-26 21:49:16 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-26 13:49:16 +0200 |
commit | a568266ec91e8ddbc8b8dc86ece9b2803eda5a9e (patch) | |
tree | 851fac54976c90b999e83c29b6abaef87f521417 /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | |
parent | e78e440df6c071b2023c19ea311305e643378fb4 (diff) | |
download | skyhanni-a568266ec91e8ddbc8b8dc86ece9b2803eda5a9e.tar.gz skyhanni-a568266ec91e8ddbc8b8dc86ece9b2803eda5a9e.tar.bz2 skyhanni-a568266ec91e8ddbc8b8dc86ece9b2803eda5a9e.zip |
Backend: Track particles command (#1787)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 2e5502e60..66065bcb6 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -452,8 +452,8 @@ import at.hannibal2.skyhanni.test.TestCopyRngMeterValues import at.hannibal2.skyhanni.test.TestExportTools import at.hannibal2.skyhanni.test.TestShowSlotNumber import at.hannibal2.skyhanni.test.WorldEdit -import at.hannibal2.skyhanni.test.command.CopyNearbyParticlesCommand import at.hannibal2.skyhanni.test.command.ErrorManager +import at.hannibal2.skyhanni.test.command.TrackParticlesCommand import at.hannibal2.skyhanni.test.command.TrackSoundsCommand import at.hannibal2.skyhanni.test.hotswap.HotswapSupport import at.hannibal2.skyhanni.utils.ChatUtils @@ -946,13 +946,11 @@ class SkyHanniMod { loadModule(QuiverDisplay()) loadModule(QuiverWarning()) - init() - // test stuff loadModule(SkyHanniDebugsAndTests()) loadModule(FixGhostEntities) - loadModule(CopyNearbyParticlesCommand) loadModule(TrackSoundsCommand) + loadModule(TrackParticlesCommand) loadModule(ButtonOnPause()) loadModule(PacketTest) loadModule(TestBingo) @@ -963,8 +961,9 @@ class SkyHanniMod { loadModule(TestShowSlotNumber()) loadModule(SkyHanniDebugsAndTests) loadModule(WorldEdit) - PreInitFinishedEvent().postAndCatch() loadModule(MobDebug()) + init() + PreInitFinishedEvent().postAndCatch() } @Mod.EventHandler |