mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-02-22 06:00:25 +01:00
17 lines
461 B
Lua
17 lines
461 B
Lua
-- Redefine some crafts
|
|
minetest.clear_craft({output = "carts:rail"})
|
|
minetest.clear_craft({output = "default:rail"})
|
|
|
|
minetest.register_craft(
|
|
{
|
|
output = "carts:rail 24",
|
|
recipe = {
|
|
{"default:steel_ingot", "group:wood", "default:steel_ingot"},
|
|
{"default:steel_ingot", "", "default:steel_ingot"},
|
|
{"default:steel_ingot", "group:wood", "default:steel_ingot"}
|
|
}
|
|
})
|
|
|
|
-- Aliases
|
|
minetest.register_alias("carts:rail_copper", "moreores:copper_rail")
|