Jump to content

MadHatAK

Members
  • Posts

    17
  • Joined

  • Last visited

Converted

  • Gender
    Male
  • Location
    Willow, Alaska, USA

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

MadHatAK's Achievements

Tree Puncher

Tree Puncher (2/8)

2

Reputation

  1. In your Forge Source look in net.minecraft.item#Food, and #Foods. You make the food item, and use a builder.
  2. Check and make sure your texture path is indeed: src/main/resources/assets/<modid>/textures/block and not src/main/resources/assets/<modid>/textures/blocks It's a common mistake.
  3. Instead of extending Block, extend OreBlock and, override the getExperience()
  4. Show your blockstates/compressed_diamond_block.json
  5. is there a compressed_diamond_block.png in your textures/blocks directory?
  6. The error says it's missing the model for your block.
  7. No, the recipe does not go in the loot_table. Just the block you want to drop.
  8. You can view what minecraft does but, I'm not familiar with IntelliJ and were to look for it though. There should be a Reference Library you can peruse through for the source code of minecraft.
  9. Same as you did for recipes. Create the package, then add the block you want to drop.
  10. Do you have a loot_table setup for your block in src/main/resources/data/minecraftmod/loot_tables?
  11. What is the model you're trying to generate? A simple tool?
  12. In your development environment, /data/minecraft/tags/blocks add your walls AND what minecraft has in their JSON. I had a similar problem and, this fixed it.
  13. No, it just tells the leaves how far above ground level to generate. I did figure this out. Overriding the leaves, and logs, tag in resources/data/minecraft/tags/blocks solves this issue. Do the same for your logs.
  14. I have based my custom tree off of the spruce tree but, when I bonemeal it to make it grow, the trunk is only 1 block high (with random 1 more) and, the leaves generate as they should. Just no trunk to the top of the tree. Tree Class Sapling Class
×
×
  • Create New...

Important Information

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