From d40fa0c53ed3667e6825b1851da7dbdd85a2f1e4 Mon Sep 17 00:00:00 2001 From: Micle Date: Sun, 8 Jun 2025 23:20:03 +0100 Subject: [PATCH] Moved particle registration into common setup. --- src/main/java/dev/micle/firefly_bush_backport/proxy/Proxy.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/dev/micle/firefly_bush_backport/proxy/Proxy.java b/src/main/java/dev/micle/firefly_bush_backport/proxy/Proxy.java index 720929d..91bea34 100644 --- a/src/main/java/dev/micle/firefly_bush_backport/proxy/Proxy.java +++ b/src/main/java/dev/micle/firefly_bush_backport/proxy/Proxy.java @@ -34,6 +34,7 @@ public class Proxy implements IProxy { ModItems.register(modEventBus); ModCreativeModeTabs.register(modEventBus); ModSounds.register(modEventBus); + ModParticles.register(modEventBus); // Register mod event bus listeners modEventBus.addListener(Proxy::setup); @@ -82,8 +83,6 @@ public class Proxy implements IProxy { public Client() { IEventBus modEventBus = FireflyBushBackport.getFMLJavaModLoadingContext().getModEventBus(); - ModParticles.register(modEventBus); - // Register mod event bus listeners modEventBus.addListener(Client::setup); modEventBus.addListener(Client::postSetup);