Posted September 19, 20205 yr Version: 1.16.3 I have already added an block to my mod: the ruby block the code is following: package com.jann.moreitemsmod.blocks; import net.minecraft.block.Block; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; import net.minecraftforge.common.ToolType; public class RubyBlock extends Block { public RubyBlock() { super(Block.Properties.create(Material.IRON) .hardnessAndResistance(5.0f, 6.0f) .sound(SoundType.METAL) .harvestLevel(3) .harvestTool(ToolType.PICKAXE) ); } } I have loaded my mod, and I can break the ruby block with each item, but I want, that everybody can break the ruby block with iron pickaxe, diamond pickaxe and netherite pickaxe.
September 19, 20205 yr You have also to chain the method setRequiresTool to your block properties. if the method is not existing for you then please, refer to this post: https://forums.minecraftforge.net/topic/91282-1161-setrequirestool/ Edited September 19, 20205 yr by Beethoven92 Check out the port of the BetterEnd fabric mod (WIP): https://www.curseforge.com/minecraft/mc-mods/betterend-forge-port
September 19, 20205 yr How to do what exactly? Be specific please.. Quote You have also to chain the method setRequiresTool to your block properties This^^^? Edited September 19, 20205 yr by Beethoven92 Check out the port of the BetterEnd fabric mod (WIP): https://www.curseforge.com/minecraft/mc-mods/betterend-forge-port
September 19, 20205 yr Author What should I have to program? I'm a bad dev, can you send me the code pls?
September 19, 20205 yr Well, i told you above what you have to "program"...if you don't know what that means, look at the code you posted above. You see that when you create your block properties with Block.Properties.create there are other methods that defines the properties of the block: .hardnessAndResistance(5.0f, 6.0f) .sound(SoundType.METAL) .harvestLevel(3) .harvestTool(ToolType.PICKAXE) Those methods are chained to Block.Properties. So to make the block actually being able to be broken by certain tools you need also to chain the mehod setRequiresTool() to your block properties. Hope after the explanation you have a better understanding of what you need to do. Again, if the method setRequiresTool doesn't exist for you, this means your mappings are outdated. In that case the link i posted above will solve your problems Check out the port of the BetterEnd fabric mod (WIP): https://www.curseforge.com/minecraft/mc-mods/betterend-forge-port
September 19, 20205 yr Author Well, I understood this, but how to update the mapping, I can't find that in your link above ._.
September 19, 20205 yr What? There is literally the whole procedure to update your mappings explained in the last post inside the link, made by the user Curle. If updating the mappings turns out to be too complicated there is another solution, and thats using the unmapped name of the method setRequiresTool, which you can find here: https://docs.google.com/spreadsheets/d/14knNUYjYkKkGpW9VTyjtlhaCTUsPWRJ91GLOFX2d23Q/edit#gid=807882818 just use the search function and look for the mapped name (setRequiresTool)..it will show you what the previous unmapped name was Check out the port of the BetterEnd fabric mod (WIP): https://www.curseforge.com/minecraft/mc-mods/betterend-forge-port
September 19, 20205 yr Did you even try to use the find and replace function?? Of course you won't find it if you don't...look in the menu at the top and inside "Bearbeiten". There you can see "find and replace", or something very similar. Use that and input setRequiresTool...then you have to wait a bit because the list is pretty long. When it finds the function, it will highlight it Check out the port of the BetterEnd fabric mod (WIP): https://www.curseforge.com/minecraft/mc-mods/betterend-forge-port
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.