Jump to content

eindev

Members
  • Posts

    8
  • Joined

  • Last visited

eindev's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. I need the object net.minecraft.world.gen.placement.CountRangeObject, but I can't find them
  2. Thank you so much, it's now working, I am happy now and my brother too
  3. For 1.16.3 Mappings too,
  4. I can't find that ._.
  5. Well, I understood this, but how to update the mapping, I can't find that in your link above ._.
  6. What should I have to program? I'm a bad dev, can you send me the code pls?
  7. How to do that? This is my first mod.
  8. 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.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.