Posted September 14, 20223 yr I have configured all my features, and registered them as per shown. However, none of my features has ever been generated by in the world by the mc engine. I don't know if I have to do anything else, or something is wrong, or if mc is just too busy generating it's trees to bother with my stuff. public static final RegistryObject<Feature<NoneFeatureConfiguration>> WEEP_TREE = FEATURES.register("weep_tree", () -> new WeepingTreeFeature(NoneFeatureConfiguration.CODEC)); public static final RegistryObject<ConfiguredFeature<?, ?>> WEEP_TREE_CONFIGURED = CONFIGURED_FEATURES.register("weep_tree", () -> new ConfiguredFeature<>(WEEP_TREE.get(), NoneFeatureConfiguration.INSTANCE)); // Placement public static final RegistryObject<PlacedFeature> WEEPING_TREE_PLACED = PLACED_FEATURES.register("weep_tree", () -> new PlacedFeature(WEEP_TREE_CONFIGURED.getHolder().get(), List.of(NoiseBasedCountPlacement.of(73, 730D, 0.0D), InSquarePlacement.spread(), PlacementUtils.HEIGHTMAP_WORLD_SURFACE, BiomeFilter.biome()))); public static void register(IEventBus bus) { CONFIGURED_FEATURES.register(bus); PLACED_FEATURES.register(bus); FEATURES.register(bus); } public EpicTrees() { final IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus(); BLOCKS.register(modEventBus); ITEMS.register(modEventBus); BLOCK_ENTITIES.register(modEventBus); MinecraftForge.EVENT_BUS.register(this); ModFeatures.register(modEventBus); modEventBus.addListener(this::commonSetup); } Edited September 14, 20223 yr by DinoPawz
September 14, 20223 yr https://forge.gemwire.uk/wiki/Biome_Modifiers Boilerplate: If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one. If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install Large files should be posted to a file sharing site like https://gist.github.com You should also read the support forum sticky post.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.