Posted October 24, 201410 yr I try to hook grass block's random tick event. I want to set a block on the grass when the event fired. I could find any built-in forge event about it. I also try "addSubstitutionAlias" to replace vanilla grass block, but I failed also. Please help me.
October 24, 201410 yr There is no event for block updates. How did you try addSubstitutionAlias? What exactly are you trying to do? BEFORE ASKING FOR HELP READ THE EAQ! I'll help if I can. Apologies if I do something obviously stupid. If you don't know basic Java yet, go and follow these tutorials.
October 25, 201410 yr Author I want "tall grass" to grow on grass block naturally(on random block update). and I try this code : in @Mod.EventHandler public static void Init(FMLInitializationEvent event) { GameRegistry.addSubstitutionAlias("minecraft:grass", Type.BLOCK, new CustomBlock()); } (CustomBlock extends BlockGrass)
October 25, 201410 yr Author you mean, i should mimic the algorithm of world random tick through WorldTickEvent?
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.