Fix JSON recipe crafting with ore dictionary

In current Forge, you can use OD entries in normal crafting recipes; using the special forge crafting recipe types is no longer necessary.
This commit is contained in:
Philipp Rustemeier
2018-03-15 16:42:45 +01:00
parent b9d240799d
commit 6890ae765a
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ apply plugin: 'net.minecraftforge.gradle.forge'
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
version = " 3.1.0 - MC 1.11.2"
version = " 4.0.0 - MC 1.12.2"
group= "electroblob.wizardry"// http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "Electroblob's Wizardry "
@@ -1,5 +1,5 @@
{
"type": "forge:ore_shaped",
"type": "minecraft:crafting_shaped",
"pattern": [
"vwv",
"xyx",
@@ -11,7 +11,7 @@
},
"w": {
"item": "minecraft:carpet",
"meta": 10
"data": 10
},
"x": {
"item": "ebwizardry:magic_crystal"
@@ -15,6 +15,6 @@
},
"result": {
"item": "ebwizardry:magic_silk",
"amount": 2
"count": 2
}
}
@@ -1,5 +1,5 @@
{
"type": "forge:ore_shaped",
"type": "minecraft:crafting_shaped",
"pattern": [
" x ",
"xyx",
@@ -16,6 +16,6 @@
},
"result": {
"item": "ebwizardry:transportation_stone",
"amount": 2
"count": 2
}
}