diff --git a/MC-001_disable_vanilla/data/minecraft/recipes/stone_slab.json b/MC-001_disable_vanilla/data/minecraft/recipes/stone_slab.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/MC-001_disable_vanilla/data/minecraft/recipes/stone_slab.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/MC-001_disable_vanilla/pack.mcmeta b/MC-001_disable_vanilla/pack.mcmeta new file mode 100755 index 0000000..26cd3cd --- /dev/null +++ b/MC-001_disable_vanilla/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "pack_format": 1, + "description": "MC-001, disables vanilla stone to smooth stone slabs" + } +} diff --git a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-quartz.json b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-quartz.json index 67cfd41..bd91fa2 100755 --- a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-quartz.json +++ b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-quartz.json @@ -1,16 +1,5 @@ { - "type": "crafting_shaped", - "pattern": [ - "__", - "__" - ], - "key": { - "_": { - "item": "minecraft:quartz_slab" - } - }, - "result": { - "item": "minecraft:smooth_quartz", - "count": 2 - } + "type": "smelting", + "ingredient": {"item": "minecraft:quartz_block"}, + "result": "minecraft:smooth_quartz" } \ No newline at end of file diff --git a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-red-sandstone.json b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-red-sandstone.json index c8ac0a9..580e461 100755 --- a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-red-sandstone.json +++ b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-red-sandstone.json @@ -1,16 +1,5 @@ { - "type": "crafting_shaped", - "pattern": [ - "__", - "__" - ], - "key": { - "_": { - "item": "minecraft:red_sandstone_slab" - } - }, - "result": { - "item": "minecraft:smooth_red_sandstone", - "count": 2 - } + "type": "smelting", + "ingredient": {"item": "minecraft:red_sandstone"}, + "result": "minecraft:smooth_red_sandstone" } \ No newline at end of file diff --git a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-sandstone.json b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-sandstone.json index c336e7e..d1cee18 100755 --- a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-sandstone.json +++ b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-sandstone.json @@ -1,16 +1,5 @@ { - "type": "crafting_shaped", - "pattern": [ - "__", - "__" - ], - "key": { - "_": { - "item": "minecraft:sandstone_slab" - } - }, - "result": { - "item": "minecraft:smooth_sandstone", - "count": 2 - } + "type": "smelting", + "ingredient": {"item": "minecraft:sandstone"}, + "result": "minecraft:smooth_sandstone" } \ No newline at end of file diff --git a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-stone.json b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-stone.json index 0a8d0fd..bac653b 100755 --- a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-stone.json +++ b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-stone.json @@ -1,16 +1,5 @@ { - "type": "crafting_shaped", - "pattern": [ - "__", - "__" - ], - "key": { - "_": { - "item": "minecraft:stone_slab" - } - }, - "result": { - "item": "minecraft:smooth_stone", - "count": 2 - } + "type": "smelting", + "ingredient": {"item": "minecraft:stone"}, + "result": "minecraft:smooth_stone" } \ No newline at end of file