Jump to content

Recommended Posts

Posted

Apparently here:

BlockList.tutorial_slab = new SlabBlock(Block.Properties.from(BlockList.tutorial_slab)).setRegistryName(location("tutorial_slab"))

your BlockList.tutorial_slab block is null when the block registration event is fired..i suggest you use deferred register to manage your registry entries

Check out the port of the BetterEnd fabric mod (WIP): https://www.curseforge.com/minecraft/mc-mods/betterend-forge-port

Posted

Take a look ate this section of the Docs https://mcforge.readthedocs.io/en/latest/concepts/registries/
In advance, an exemple of DeferredRegister would be something like this:

DeferredRegister<Block> BLOCKS = DeferredRegister.create(ForgeRegistries.ITEMS, MOD_ID);

RegistryObject<Block> COPPER_ORE = BLOCKS.register("copper_ore", () -> new OreBlock(...));

And when you need to access the entries (blocks) you would get them throught the BLOCKS DeferredRegister or if you need only one specific entry you would use COPPER_ORE.get() ... in your case:

 

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



×
×
  • Create New...

Important Information

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