Posted June 23, 20214 yr Hi! I am new, but I have read around here a bit and I cant figure out what is wrong. I am using the tutorial by silentchaos512 and in modblocks.java and it doesn't like "Supplier" or "registerNoItem". package com.StarGazerz.tutorial.setup; import net.minecraft.block.Block; import net.minecraftforge.fml.RegistryObject; public class ModBlocks { static void register () {} private static <T extends Block> RegistryObject<T> register(String name, Supplier<T> block) { RegistryObject<T> ret = registerNoItem(name, block); } } Maybe I just don't know enough about java? if so can you recommend where to go to learn. Thanks
June 23, 20214 yr 11 minutes ago, Fly_25R said: static void register () {} This indicates that your DeferredRegister exists in another class. Don't do that. The entire god damn point of the DeferredRegister system was to allow people to register their blocks in static fields. In a single class. 12 minutes ago, Fly_25R said: RegistryObject<T> ret = registerNoItem(name, block); There is no registerNoItem() method in this class. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
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.