Exclude Cobblestone slabs and wall recipes (#6230)

This commit is contained in:
AfterRebelion 2019-10-23 00:31:35 +02:00 committed by LexManos
parent 6422310453
commit ca8a418364
3 changed files with 2 additions and 31 deletions

View File

@ -1,15 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"###"
],
"key": {
"#": {
"tag": "forge:cobblestone"
}
},
"result": {
"item": "minecraft:cobblestone_slab",
"count": 6
}
}

View File

@ -1,16 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"###",
"###"
],
"key": {
"#": {
"tag": "forge:cobblestone"
}
},
"result": {
"item": "minecraft:cobblestone_wall",
"count": 6
}
}

View File

@ -89,6 +89,8 @@ public class ForgeRecipeProvider extends RecipeProvider
exclude(Blocks.EMERALD_BLOCK);
exclude(Blocks.COBBLESTONE_STAIRS);
exclude(Blocks.COBBLESTONE_SLAB);
exclude(Blocks.COBBLESTONE_WALL);
super.registerRecipes(vanilla -> {
IFinishedRecipe modified = enhance(vanilla);