diff --git a/CHANGELOG.md b/CHANGELOG.md index c6f88c85..11a5551f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,2 @@ -## Changes -- Removed distance restriction on custom block renderers. -- Updated Moobloom Spawn Egg to match Minecraft Earth's spawn egg. -- Allowed Mooblooms to spawn flowers every 4 seconds that a flower hasn't been placed if they are not moving enough. -- Added a plant sound whenever Mooblooms plant flowers. -- Mooblooms now emit game events when planting flowers. -- Mooblooms may now eat bone meal from dispensers. - ## Bugfixes -- Fixed Mooblooms spreading flowers immediately upon feeding them bone meal. -- Fixed Mooblooms being able to spread flowers on blocks where flowers cannot be placed. \ No newline at end of file +- [NEOFORGE] Fixed startup crash. \ No newline at end of file diff --git a/buildSrc/src/main/kotlin/house/greenhouse/bovinesandbuttercups/gradle/Versions.kt b/buildSrc/src/main/kotlin/house/greenhouse/bovinesandbuttercups/gradle/Versions.kt index f19bacdc..e26749e8 100644 --- a/buildSrc/src/main/kotlin/house/greenhouse/bovinesandbuttercups/gradle/Versions.kt +++ b/buildSrc/src/main/kotlin/house/greenhouse/bovinesandbuttercups/gradle/Versions.kt @@ -1,7 +1,7 @@ package house.greenhouse.bovinesandbuttercups.gradle object Versions { - const val MOD = "2.0.1" + const val MOD = "2.0.2" // Minecraft const val MINECRAFT = "1.21.1" diff --git a/neoforge/src/main/java/house/greenhouse/bovinesandbuttercups/BovinesAndButtercupsNeoForge.java b/neoforge/src/main/java/house/greenhouse/bovinesandbuttercups/BovinesAndButtercupsNeoForge.java index 2b8a3a20..162aae7a 100644 --- a/neoforge/src/main/java/house/greenhouse/bovinesandbuttercups/BovinesAndButtercupsNeoForge.java +++ b/neoforge/src/main/java/house/greenhouse/bovinesandbuttercups/BovinesAndButtercupsNeoForge.java @@ -102,11 +102,6 @@ public BovinesAndButtercupsNeoForge(IEventBus eventBus) { @EventBusSubscriber(modid = BovinesAndButtercups.MOD_ID, bus = EventBusSubscriber.Bus.GAME) public static class GameEvents { - @SubscribeEvent - public static void onCommonSetup(FMLCommonSetupEvent event) { - MoobloomEatDispenseBehavior.registerBehavior(MoobloomEatDispenseBehavior.INSTANCE); - } - @SubscribeEvent public static void registerCommands(RegisterCommandsEvent event) { BovinesCommands.register(event.getDispatcher(), event.getBuildContext()); @@ -327,6 +322,10 @@ public static void onEntityStruckByLightning(EntityStruckByLightningEvent event) @EventBusSubscriber(modid = BovinesAndButtercups.MOD_ID, bus = EventBusSubscriber.Bus.MOD) public static class ModEvents { + @SubscribeEvent + public static void onCommonSetup(FMLCommonSetupEvent event) { + MoobloomEatDispenseBehavior.registerBehavior(MoobloomEatDispenseBehavior.INSTANCE); + } @SubscribeEvent public static void createEntityAttributes(EntityAttributeCreationEvent event) {