(Using IntelliJ to code everything) I am currently working on a Minecraft Mod and have encountered a strange issue. When testing my custom item, the name displays perfectly with spaces, but the texture fails to load. The error message I receive is as follows:
"Unable to load model: 'bullets:really_long_item_name_here#inventory' referenced from: bullets:really_long_item_name_here#inventory: java.io.FileNotFoundException: bullets:models/item/really_long_item_name_here.json"
The texture image is saved as a .png file and is named correctly.
Here is the code snippet located within the models/item directory:
{
"parent": "item/generated",
"textures": {
"layer0": "bullets:items/really_long_item_name_here"
}
}