diff options
author | alemi <me@alemi.dev> | 2023-02-15 21:43:33 +0100 |
---|---|---|
committer | alemi <me@alemi.dev> | 2023-02-15 21:43:33 +0100 |
commit | c2455718f9d94528f8de6d7511f9c32a9e4077e4 (patch) | |
tree | a5ef3854c04a20f0db3a16bb143803a7f4e463ce | |
parent | 956781f3af76d3d22ebf68e06ec1e23e2cb9e256 (diff) |
chore: removed example from template
-rw-r--r-- | src/main/java/ftbsc/bscv/BoSCoVicino.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/main/java/ftbsc/bscv/BoSCoVicino.java b/src/main/java/ftbsc/bscv/BoSCoVicino.java index 6975560..c533bf5 100644 --- a/src/main/java/ftbsc/bscv/BoSCoVicino.java +++ b/src/main/java/ftbsc/bscv/BoSCoVicino.java @@ -151,15 +151,4 @@ public class BoSCoVicino implements ICommons { LOGGER.error("Local player is NULL"); } } - - // You can use EventBusSubscriber to automatically subscribe events on the contained class (this is subscribing to the MOD - // Event bus for receiving Registry Events) - @Mod.EventBusSubscriber(bus=Mod.EventBusSubscriber.Bus.MOD) - public static class RegistryEvents { - @SubscribeEvent - public static void onBlocksRegistry(final RegistryEvent.Register<Block> blockRegistryEvent) { - // register a new block here - LOGGER.info("HELLO from Register Block"); - } - } } |