Compatibility of Bismuth with Enlightened End's Bismuth?
ratemisia opened this issue ยท 4 comments
Enlightened End at https://www.curseforge.com/minecraft/mc-mods/enlightend adds a Bismuth ore to the End, which doesn't seem to be recognized by this mod when I've tested it. Otherwise, it could use the preexisting Bismuth processing in this mod.
Yes, indeed.
These two tags are important
Item | Tag should having |
---|---|
Bismuth Ore | forge:ores/bismuth |
Bismuth Ingot | forge:ingots/bismuth |
That is Enlightened's problem.
The mod does not use tag for any recipes and items.
In example, 'Bismuth Ingot' should have 'forge:ingots/bismuth' tag like this.
Below is recipe json for craft 'Bismuth Block' from 'Bismusth Ingot'. (other recipes same)
{
"type": "minecraft:crafting_shaped",
"group": "bismuth_block",
"category": "building",
"pattern": [
"012",
"345",
"678"
],
"key": {
"0": {
"item": "enlightened_end:bismuth_ingot"
},
"1": {
"item": "enlightened_end:bismuth_ingot"
},
"2": {
"item": "enlightened_end:bismuth_ingot"
},
"3": {
"item": "enlightened_end:bismuth_ingot"
},
"4": {
"item": "enlightened_end:bismuth_ingot"
},
"5": {
"item": "enlightened_end:bismuth_ingot"
},
"6": {
"item": "enlightened_end:bismuth_ingot"
},
"7": {
"item": "enlightened_end:bismuth_ingot"
},
"8": {
"item": "enlightened_end:bismuth_ingot"
}
},
"result": {
"item": "enlightened_end:bismuth_block",
"count": 1
}
}
That recipe is declare only ingredient as 'item'.
Then there is no possibility for other modes to intervene.
In basically, need to use tag for be compatibility.
"item": "enlightened_end:bismuth_ingot"
should change be "tag": "forge:ingots/bismuth"
or similar.
This mod will have compatibility automatically when Enlightened give tag to items and use tag at recipe json.