79319553

Date: 2024-12-31 08:57:10
Score: 0.5
Natty:
Report link

OK I already found the solution.

Since NeoForge 21.4.x items' models are searched in directory /assets/<mod_id>/items. So, I had to create two files in this directory for my two items respectively like this:

.
└── assets
    └── utilz
        └── items
            ├── target_clear_stick.json
            └── target_stick.json

and reference the actual models from them.

target_stick.json:

{
  "model": {
    "type": "minecraft:model",
    "model": "utilz:item/target_stick"
  }
}

target_clear_stick.json:

{
  "model": {
    "type": "minecraft:model",
    "model": "utilz:item/target_clear_stick"
  }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: who is this bro xd