mirror of
https://github.com/minetest-mods/technic.git
synced 2025-04-19 02:40:36 +02:00
use clear_craft
This commit is contained in:
parent
338f3b6a99
commit
1b0f6aa815
@ -165,15 +165,15 @@ minetest.register_craft({
|
|||||||
|
|
||||||
-- Remove some recipes
|
-- Remove some recipes
|
||||||
-- Bronze
|
-- Bronze
|
||||||
minetest.register_craft({
|
minetest.clear_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "default:bronze_ingot 0",
|
output = "default:bronze_ingot",
|
||||||
recipe = {"default:copper_ingot", "default:steel_ingot"}
|
recipe = {"default:copper_ingot", "default:steel_ingot"}
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Accelerator tube
|
-- Accelerator tube
|
||||||
minetest.register_craft({
|
minetest.clear_craft({
|
||||||
output = "pipeworks:accelerator_tube_1 0",
|
output = "pipeworks:accelerator_tube_1",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
|
{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
|
||||||
{ "default:mese_crystal_fragment", "default:steel_ingot", "default:mese_crystal_fragment" },
|
{ "default:mese_crystal_fragment", "default:steel_ingot", "default:mese_crystal_fragment" },
|
||||||
@ -182,8 +182,8 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
-- Teleport tube
|
-- Teleport tube
|
||||||
minetest.register_craft({
|
minetest.clear_craft({
|
||||||
output = "pipeworks:teleport_tube_1 0",
|
output = "pipeworks:teleport_tube_1",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
|
{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
|
||||||
{ "default:desert_stone", "default:mese", "default:desert_stone" },
|
{ "default:desert_stone", "default:mese", "default:desert_stone" },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user