Posted October 13, 20195 yr Hello, how can i make some vanilla blocks affected by gravity? Is it possible? Like in a registry event do I check the block and then make it extends FallingBlock? Thank you
October 13, 20195 yr You need to replace the block with your own by overriding it in the block registry. Some tips: Spoiler Modder Support: Spoiler 1. Do not follow tutorials on YouTube, especially TechnoVision (previously called Loremaster) and HarryTalks, due to their promotion of bad practice and usage of outdated code. 2. Always post your code. 3. Never copy and paste code. You won't learn anything from doing that. 4. Quote Programming via Eclipse's hotfixes will get you nowhere 5. Learn to use your IDE, especially the debugger. 6. Quote The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it. Support & Bug Reports: Spoiler 1. Read the EAQ before asking for help. Remember to provide the appropriate log(s). 2. Versions below 1.11 are no longer supported due to their age. Update to a modern version of Minecraft to receive support.
October 13, 20195 yr Author Spoiler public void onRegister(RegistryEvent.Register<Block> event) { for(Entry<ResourceLocation, Block> e : event.getRegistry().getEntries()) { if(e.getValue() == Blocks.DIRT) { e.setValue(new GravityBlock(Blocks.DIRT)); } } } Spoiler public class GravityBlock extends FallingBlock { public GravityBlock(Block block) { super(Block.Properties.from(block)); } } I assume I didnt override the block correctly?
October 13, 20195 yr 50 minutes ago, cinsiian said: e.setValue(new GravityBlock(Blocks.DIRT)); This makes no sense, getEntries() returns an unmodifiable set: @Override public Set<Entry<ResourceLocation, V>> getEntries() { return Collections.unmodifiableSet(this.names.entrySet()); } 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.
October 13, 20195 yr 3 hours ago, cinsiian said: I assume I didnt override the block correctly? Yes. You just need to register a Block with the same registry name and the same variants. 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.
October 15, 20195 yr Author On 10/13/2019 at 10:59 PM, Animefan8888 said: register a Block with the same registry name and the same variants. event.getRegistry().register(new GravityBlock(Blocks.DIRT).setRegistryName("dirt")); Nothing is changed. Am I doing something wrong?
October 15, 20195 yr Author event.getRegistry().register(new GravityBlock(Blocks.DIRT).setRegistryName(Blocks.DIRT.getRegistryName())); I tried also with new ResourceLocation("minecraft", "dirt") but nothing is happening :8 Do I have to make an itemblock as well?
October 15, 20195 yr 4 minutes ago, cinsiian said: Do I have to make an itemblock as well? Probably. 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.
October 15, 20195 yr Author public Block dirt_gravity = new GravityBlock(Blocks.DIRT).setRegistryName(Blocks.DIRT.getRegistryName()); @SubscribeEvent public void register_block(RegistryEvent.Register<Block> event) { event.getRegistry().register(dirt_gravity); } @SubscribeEvent public void register_item(RegistryEvent.Register<Item> event) { event.getRegistry().register(new BlockItem(dirt_gravity, new Item.Properties()).setRegistryName(Blocks.DIRT.getRegistryName())); } still nothing
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.