Jump to content

[SOLVED!]My Ores are not generated


me1

Recommended Posts

So I have these Blocks(white_empty_block & black_empty_block) witch I want to spawn underground just like Ores. Sadly it isn't working. I don't know where the problem is. I added some logs and all methods I want to be called are called. Here are some parts of my code:

    @SubscribeEvent
    public static void loadCompleteEvent(FMLLoadCompleteEvent event)
    {
        BlockInit.onOreGeneration();
        OreGenerator.generateOre();
    }

// ^ This is in my main Class

public static void onOreGeneration()
    {
        Biome[] overWorld = getBiomes(BiomeDictionary.Type.OVERWORLD);
        OreGenerator.Ores.add(new OreGenerator.OreType(white_empty_block.getDefaultState(), overWorld, new CountRangeConfig(1180, 8, 8, 124), OreFeatureConfig.FillerBlockType.NATURAL_STONE, 2));
        OreGenerator.Ores.add(new OreGenerator.OreType(black_empty_block.getDefaultState(), overWorld, new CountRangeConfig(1140, 8, 8, 124), OreFeatureConfig.FillerBlockType.NATURAL_STONE, 2));
    }

//^ This is in my BlockInit

public class OreGenerator {
    public static class OreType {
        public final BlockState ore;
        public final Biome[] biomes;
        public final CountRangeConfig countRangeConfig;
        public final OreFeatureConfig.FillerBlockType fillerBlockType;
        public final int size;

        public OreType(BlockState ore, Biome[] biomesIn, CountRangeConfig countRangeConfig, OreFeatureConfig.FillerBlockType fillerBlock, int maxGroupSize) {
            this.ore = ore;
            biomes = biomesIn;
            this.countRangeConfig = countRangeConfig;
            fillerBlockType = fillerBlock;
            size = maxGroupSize;
        }
    }

    public static final ArrayList<OreType> Ores = new ArrayList<OreType>();

    public static void generateOre() {
        for (Object oreType : Ores.toArray())
            for (int i = 0; i < ForgeRegistries.BIOMES.getValues().size(); ++i) {
                for (Biome biomeCan : ((OreType) oreType).biomes)
                    if (ForgeRegistries.BIOMES.getValues().contains(biomeCan)) {
                        OreType ore = (OreType) oreType;
                        ConfiguredPlacement placement = Placement.COUNT_RANGE.configure(ore.countRangeConfig);
                        ((Biome)ForgeRegistries.BIOMES.getValues().toArray()[i]).addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, Feature.ORE.withConfiguration(
                                new OreFeatureConfig(ore.fillerBlockType, ore.ore, ore.size)).withPlacement(placement));
                    }
            }
    }

    public static Biome[] getBiomes(BiomeDictionary.Type type) {
        Object[] _biomes = BiomeDictionary.getBiomes(type).toArray();
        Biome[] biomes = new Biome[_biomes.length];
        for (int i = 0; i < _biomes.length; ++i)
            biomes[i] = (Biome) _biomes[i];
        return biomes;
    }
}

//^ This is My OreGenerator Class

 

Please help.

Edited by me1
SOLVED
Link to comment
Share on other sites

1 hour ago, me1 said:

for (int i = 0; i < ForgeRegistries.BIOMES.getValues().size(); ++i) {
	for (Biome biomeCan : ((OreType) oreType).biomes)
		if (ForgeRegistries.BIOMES.getValues().contains(biomeCan)) {
			OreType ore = (OreType) oreType;
			ConfiguredPlacement placement = Placement.COUNT_RANGE.configure(ore.countRangeConfig);
			((Biome)ForgeRegistries.BIOMES.getValues().toArray()[i]).addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, Feature.ORE.withConfiguration(new OreFeatureConfig(ore.fillerBlockType, ore.ore, ore.size)).withPlacement(placement));
		}
}
    

 

What are you trying to do here?

You iterate every biome for the oreType for every biome in the game.

News flash

Quote

(Biome)ForgeRegistries.BIOMES.getValues().toArray()

This is not the biome that you want to add it to. Right now your code will try to add it to every biome.

 

1 hour ago, me1 said:

FMLLoadCompleteEvent

This is not the correct event to do this in. You should be doing this in the FMLCommonSetupEvent.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

I change the whole double loop nonesence, translated the FMLLoadCompleteEvent to to FMLCommonSetupEvent and added it to DefferedWorkQueue and... it still soesn't work :(

Here is some more information some might find usefull:

-I don't you Deferred Registers. I use the othe method(dunno how it's called).

-I also can't find my biomes.

-The blocks work when. I can place them, I can craft them, I just can't find them under the ground(I seearched for multiple minuets)

Link to comment
Share on other sites

5 minutes ago, me1 said:

I change the whole double loop nonesence, translated the FMLLoadCompleteEvent to to FMLCommonSetupEvent and added it to DefferedWorkQueue and... it still soesn't work

Post your new code.

 

5 minutes ago, me1 said:

-I don't you Deferred Registers. I use the othe method(dunno how it's called)

Registry Events?

 

5 minutes ago, me1 said:

-I also can't find my biomes.

Did you tell them to generate? Also a separate issue.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

Here's my new code:

private void setup(final FMLCommonSetupEvent event) {
        for(int i = 0; i < 5000; ++i)
            LOGGER.info("SETUP");
        BlockInit.onOreGeneration();
        OreGenerator.generateOre();
    }

    public static void deferredWorkQueue(DeferredWorkQueue  queue)
    {
        for(int i = 0; i < 5000; ++i)
            LOGGER.info("SETUP");
        BlockInit.onOreGeneration();
        OreGenerator.generateOre();
    }

//^ MainClass Updated

public static void generateOre() {
        for (Object oreType : Ores.toArray())
                for (int i = 0; i < ((OreType)oreType).biomes.length; ++i)
                    {Biome biome = ((OreType)oreType).biomes[i];
                        OreType ore = (OreType) oreType;
                        ConfiguredPlacement placement = Placement.COUNT_RANGE.configure(ore.countRangeConfig);
                        biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, Feature.ORE.withConfiguration(
                                new OreFeatureConfig(ore.fillerBlockType, ore.ore, ore.size)).withPlacement(placement));
                    }
    }

//^ OreGenerator Updated

Link to comment
Share on other sites

6 minutes ago, me1 said:

public static void deferredWorkQueue(DeferredWorkQueue queue) { for(int i = 0; i < 5000; ++i) LOGGER.info("SETUP"); BlockInit.onOreGeneration(); OreGenerator.generateOre(); }

This is not what using DeferredWorkQueue means. You need to use DeferredWorkQueue.runLater to run your code on the main thread.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

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.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Baba  Serege [[+27-73 590 8989]] has experience of 27 years in helping and guiding many people from all over the world. His psychic abilities may help you answer and resolve many unanswered questions. He specialize in helping women and men from all walks of life.. 1) – Bring back lost lover. even if lost for a long time. 2) – My lover is abusing alcohol, partying and cheating on me I urgently need help” 3) – Divorce or court issues. 4) – Is your love falling apart? 5) – Do you want your love to grow stronger? 6) – Is your partner losing interest in you? 7) – Do you want to catch your partner cheating on you? – We help to keep your partner faithful and loyal to you. 9) – We recover love and happiness when relationship breaks down. 10) – Making your partner loves you alone. 11) – We create loyalty and everlasting love between couples. 12) – Get a divorce settlement quickly from your ex-partner. 13) – We create everlasting love between couples. 14) – We help you look for the best suitable partner. 15) – We bring back lost lover even if lost for a long time. 16) – We strengthen bonds in all love relationship and marriages 17) – Are you an herbalist who wants to get more powers? 18) – Buy a house or car of your dream. 19) – Unfinished jobs by other doctors come to me. 20) – I help those seeking employment. 21) – Pensioners free treatment. 22) – Win business tenders and contracts. 23) – Do you need to recover your lost property? 24) – Promotion at work and better pay. 25) – Do you want to be protected from bad spirits and nightmares? 26) – Financial problems. 27) – Why you can’t keep money or lovers? 28) – Why you have a lot of enemies? 29) – Why you are fired regularly on jobs? 30) – Speed up money claim spell, delayed payments, pension and accident funds 31) – I help students pass their exams/interviews. 33) – Removal of bad luck and debts. 34) – Are struggling to sleep because of a spiritual wife or husband. 35- ) Recover stolen property
    • OLXTOTO adalah situs bandar togel online resmi terbesar dan terpercaya di Indonesia. Bergabunglah dengan OLXTOTO dan nikmati pengalaman bermain togel yang aman dan terjamin. Koleksi toto 4D dan togel toto terlengkap di OLXTOTO membuat para member memiliki pilihan taruhan yang lebih banyak. Sebagai situs togel terpercaya, OLXTOTO menjaga keamanan dan kenyamanan para membernya dengan sistem keamanan terbaik dan enkripsi data. Transaksi yang cepat, aman, dan terpercaya merupakan jaminan dari OLXTOTO. Nikmati layanan situs toto terbaik dari OLXTOTO dengan tampilan yang user-friendly dan mudah digunakan. Layanan pelanggan tersedia 24/7 untuk membantu para member. Bergabunglah dengan OLXTOTO sekarang untuk merasakan pengalaman bermain togel yang menyenangkan dan menguntungkan.
    • Baba  Serege [[+27-73 590 8989]] has experience of 27 years in helping and guiding many people from all over the world. His psychic abilities may help you answer and resolve many unanswered questions. He specialize in helping women and men from all walks of life.. 1) – Bring back lost lover. even if lost for a long time. 2) – My lover is abusing alcohol, partying and cheating on me I urgently need help” 3) – Divorce or court issues. 4) – Is your love falling apart? 5) – Do you want your love to grow stronger? 6) – Is your partner losing interest in you? 7) – Do you want to catch your partner cheating on you? – We help to keep your partner faithful and loyal to you. 9) – We recover love and happiness when relationship breaks down. 10) – Making your partner loves you alone. 11) – We create loyalty and everlasting love between couples. 12) – Get a divorce settlement quickly from your ex-partner. 13) – We create everlasting love between couples. 14) – We help you look for the best suitable partner. 15) – We bring back lost lover even if lost for a long time. 16) – We strengthen bonds in all love relationship and marriages 17) – Are you an herbalist who wants to get more powers? 18) – Buy a house or car of your dream. 19) – Unfinished jobs by other doctors come to me. 20) – I help those seeking employment. 21) – Pensioners free treatment. 22) – Win business tenders and contracts. 23) – Do you need to recover your lost property? 24) – Promotion at work and better pay. 25) – Do you want to be protected from bad spirits and nightmares? 26) – Financial problems. 27) – Why you can’t keep money or lovers? 28) – Why you have a lot of enemies? 29) – Why you are fired regularly on jobs? 30) – Speed up money claim spell, delayed payments, pension and accident funds 31) – I help students pass their exams/interviews. 33) – Removal of bad luck and debts. 34) – Are struggling to sleep because of a spiritual wife or husband. 35- ) Recover stolen property
  • Topics

×
×
  • Create New...

Important Information

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