Jump to content

Danebi

Members
  • Posts

    432
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Danebi

  1. Post the debug.log.
  2. In .minecraft\logs.
  3. Post the debug.log.
  4. Delete this file: C:\Users\admin\AppData\Roaming\.minecraft\config\fml.toml
  5. This is the console log. As already said, the debug.log is a file in your logs folder.
  6. In .minecraft\logs.
  7. Post the debug.log.
  8. repurposed structures is for 1.16.1.
  9. This is just the console log. The debug.log is a file in the .minecraft\logs folder.
  10. Post the debug.log.
  11. You can find vanilla classes in your IDE. The chicken class should be located in net.minecraft.entity.passive.ChickenEntity.
  12. Try to delete this file: C:\Users\akava\AppData\Roaming\.minecraft\config\fml.toml.
  13. Probably not. Make your own topic and post logs.
  14. Post the debug.log.
  15. Look at how chicken does it...
  16. Make your own topic and post the debug.log.
  17. Here, you are using ArrowEntity but you should use ArrowItem. Just tested it and you can craft the apple. You have commented out the registration of the bow and arrow and there is no recipe for them here. I tried adding a custom recipe and to run the game and all works. If you still have a problem post the debug.log.
  18. Try to delete this file: C:\Users\bbrin\AppData\Roaming\.minecraft\config\fml.toml
  19. This class is useless, you already have the vanilla Item class. Same for this, this, this, this and this. Also, clean up your imports. Ctrl + Shift + O will do it automatically.
  20. Post the debug.log.
  21. return new custom_model(1.0f); Is it that difficult?
  22. I give up... Please learn Java.
  23. The argument for the custom_model constuctor requires a float. Why are you giving it a Item.Properties?
  24. return LivingEntity; 1- You don't have to return LivingEntity! You have to return your custom_model class. 2- You have to return an instance of the class. Something like this: return new custom_model(your constuctor argument); I'm literally giving you the code, why can't you understand???
×
×
  • Create New...

Important Information

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