I i know this thread is old but would you know what is wrong with my code for it not to work:
public static final DeferredRegister<Block> VANILLA_ITEMS = DeferredRegister.create(ForgeRegistries.BLOCKS, "minecraft");
public static final RegistryObject<Block> OAK_LOG = VANILLA_ITEMS.register("oak_log",
() -> new Block(BlockBehaviour.Properties.of().strength(5.0f, 0.5f)));
I am new at modding and i am in forge My question was how do i modify an already existing block property, like for blocks that you create its easy:
public static final RegistryObject<Block> BURNEDWOOD = registerBlock("burnedwood", () -> new Block(BlockBehaviour.Properties.of().blablablabla));
but what do I put in for just vanilla blocks(I want to change the oak log to take more time to cut down, but idk how to access the properties of said block)
1 reply
Important Information
By using this site, you agree to our Terms of Use.