Jump to content

Ore generation in 1.16.5


JacobsDevelop

Recommended Posts

So... I upgraded project to 1.16.5 everything went well, I have changed those necessary things like changing .group() to .tab(), etc. But I have problem with this one:

private static void generateOre(BiomeGenerationSettingsBuilder settings, RuleTest fillerType,
                                    BlockState state, int veinSize, int minHeight, int maxHeight, int amount) {
        settings.withFeature(GenerationStage.Decoration.UNDERGROUND_ORES,
                Feature.ORE.withConfiguration(new OreFeatureConfig(fillerType, state, veinSize))
                        .withPlacement(Placement.RANGE.configure(new TopSolidRangeConfig(minHeight, 0, maxHeight)))
                        .square().func_242731_b(amount));
    }

This is whole void, but problems are with .withFeature, .withConfiguration and .configure, and I don't know with what I need to replace it or what.

Link to comment
Share on other sites

I tried updating and mod successfully ran but, ores aren't generating. Can somebody help me. As in my main topic, problem is with .withFeature, .withConfiguration and .configure. Don't know what is replacement in 1.16.5. Code below is reverted to it's original state (from 1.16.4)

Here's whole Intellij window (code with errors, etc.)

image.thumb.png.c848d33574e8a5fdc18e54f47503008b.png

Edited by JacobsDevelop
Link to comment
Share on other sites

  • 1 year later...

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.