Quest icons should be saved as namespaced strings
endumiuz opened this issue ยท 2 comments
Minecraft: 1.7.10
Forge: 1614
Better Questing: 3.0.303
Icons are saved like this:
"icon:10": {
"id:2": 4178,
"Count:3": 1,
"Damage:2": 8500,
"OreDict:8": ""
},
They should be saved like this:
"icon:10": {
"id:8": "gregtech:gt.meta.rockGt",
"Count:3": 1,
"Damage:2": 8500,
"OreDict:8": ""
},
Saw this before and kept wondering why this was happening. Think it finally clicked in my head though. Old serialization still used numbers despite IDs being supported elsewhere.
This is gonna be annoying to fix