Hello there ^^/
I didn't mod for, uhm, I think two or three years now.
When I tried to write a simple 1.14.3 Mod (which should just add an item to the game) this week, the following appeared:
So I opened the log and found this:
"[04Jul2019 22:25:56.748] [Server-Worker-1/WARN] [net.minecraft.client.renderer.model.ModelBakery/]: Unable to load model: 'okismod:coin#inventory' referenced from: okismod:coin#inventory: java.io.FileNotFoundException: okismod:models/item/coin.json"
But
\Desktop\Mods\src\main\resources\assets\okismod\models\item\coin.json
{
"parent": "item/generated",
"textures": {
"layer0": "okismod:items/coin"
}
}
and/or (i tried both)
{
"parent": "item/generated",
"textures": {
"layer0": "okismod:item/coin"
}
}
\Desktop\Mods\src\main\resources\assets\okismod\textures\items and/or \Desktop\Mods\src\main\resources\assets\okismod\textures\item\coin.png (16x16 pixels) (i tried both)
\Desktop\Mods\src\main\resources\assets\okismod\lang.en_us.json
{
"item.okismod.coin": "Golden Coin"
}
do exist.
The result of my coin ingame is:
- missing texture (purple/black block)
- missing name
So, uhm, does anyone know what I did wrong?