diff --git a/gradle.properties b/gradle.properties index 3168745..0ab63ef 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs = -Xmx1G org.gradle.parallel = true # Mod Properties -version = 2.3.0-SNAPSHOT-1 +version = 2.3.0-SNAPSHOT-2 maven_group = xyz.limepot archives_base_name = roses_mod diff --git a/src/main/java/xyz/limepot/roses_mod/RosesMod.java b/src/main/java/xyz/limepot/roses_mod/RosesMod.java index 9e54889..208bc9a 100644 --- a/src/main/java/xyz/limepot/roses_mod/RosesMod.java +++ b/src/main/java/xyz/limepot/roses_mod/RosesMod.java @@ -59,6 +59,7 @@ public class RosesMod implements ModInitializer { Registry.register(Registries.ITEM, new Identifier(MOD_ID, "cyan_rose_bush"), new BlockItem(CYAN_ROSE_BUSH, new QuiltItemSettings())); //CREATIVE TABS + /* ItemGroupEvents.modifyEntriesEvent(ItemGroups.NATURAL).register(content -> { content.addAfter(Items.POPPY, ROSE_FLOWER); }); @@ -67,7 +68,7 @@ public class RosesMod implements ModInitializer { }); ItemGroupEvents.modifyEntriesEvent(ItemGroups.NATURAL).register(content -> { content.addAfter(Items.ROSE_BUSH, CYAN_ROSE_BUSH); - }); + });*/ //LOOT TABLES diff --git a/src/main/java/xyz/limepot/roses_mod/world/gen/ModFlowerGeneration.java b/src/main/java/xyz/limepot/roses_mod/world/gen/ModFlowerGeneration.java index f6d2ad7..d985c57 100644 --- a/src/main/java/xyz/limepot/roses_mod/world/gen/ModFlowerGeneration.java +++ b/src/main/java/xyz/limepot/roses_mod/world/gen/ModFlowerGeneration.java @@ -4,7 +4,7 @@ package xyz.limepot.roses_mod.world.gen; import net.minecraft.registry.RegistryKey; import net.minecraft.registry.RegistryKeys; import net.minecraft.util.Identifier; -import net.minecraft.world.biome.BiomeKeys; +//import net.minecraft.world.biome.BiomeKeys; import net.minecraft.world.gen.GenerationStep; import net.minecraft.world.gen.feature.ConfiguredFeature; import net.minecraft.world.gen.feature.PlacedFeature; @@ -29,10 +29,10 @@ public class ModFlowerGeneration { } */ public static void generateFlowers() { - RegistryKey> cyanRoseBushTag = RegistryKey.of(RegistryKeys.CONFIGURED_FEATURE, new Identifier(MOD_ID, "cyan_rose_bush")); + /*RegistryKey> cyanRoseBushTag = RegistryKey.of(RegistryKeys.CONFIGURED_FEATURE, new Identifier(MOD_ID, "cyan_rose_bush")); RegistryKey cyanRoseBushTagKey = RegistryKey.of(RegistryKeys.PLACED_FEATURE, new Identifier(MOD_ID, "cyan_rose_bushes")); BiomeModifications.addFeature(BiomeSelectors.includeByKey(BiomeKeys.FOREST), GenerationStep.Feature.VEGETAL_DECORATION, - RegistryKey.of(RegistryKeys.PLACED_FEATURE, new Identifier(MOD_ID, "cyan_rose_bush"))); + RegistryKey.of(RegistryKeys.PLACED_FEATURE, new Identifier(MOD_ID, "cyan_rose_bush")));*/ } }