Exclude Cobblestone slabs and wall recipes (#6230)
This commit is contained in:
parent
6422310453
commit
ca8a418364
3 changed files with 2 additions and 31 deletions
|
@ -1,15 +0,0 @@
|
||||||
{
|
|
||||||
"type": "minecraft:crafting_shaped",
|
|
||||||
"pattern": [
|
|
||||||
"###"
|
|
||||||
],
|
|
||||||
"key": {
|
|
||||||
"#": {
|
|
||||||
"tag": "forge:cobblestone"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"result": {
|
|
||||||
"item": "minecraft:cobblestone_slab",
|
|
||||||
"count": 6
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,16 +0,0 @@
|
||||||
{
|
|
||||||
"type": "minecraft:crafting_shaped",
|
|
||||||
"pattern": [
|
|
||||||
"###",
|
|
||||||
"###"
|
|
||||||
],
|
|
||||||
"key": {
|
|
||||||
"#": {
|
|
||||||
"tag": "forge:cobblestone"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"result": {
|
|
||||||
"item": "minecraft:cobblestone_wall",
|
|
||||||
"count": 6
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -89,6 +89,8 @@ public class ForgeRecipeProvider extends RecipeProvider
|
||||||
exclude(Blocks.EMERALD_BLOCK);
|
exclude(Blocks.EMERALD_BLOCK);
|
||||||
|
|
||||||
exclude(Blocks.COBBLESTONE_STAIRS);
|
exclude(Blocks.COBBLESTONE_STAIRS);
|
||||||
|
exclude(Blocks.COBBLESTONE_SLAB);
|
||||||
|
exclude(Blocks.COBBLESTONE_WALL);
|
||||||
|
|
||||||
super.registerRecipes(vanilla -> {
|
super.registerRecipes(vanilla -> {
|
||||||
IFinishedRecipe modified = enhance(vanilla);
|
IFinishedRecipe modified = enhance(vanilla);
|
||||||
|
|
Loading…
Reference in a new issue