1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-29 07:50:35 +02:00

Replace copper rail from moreore

with the copper rail from carts (double craft for the moment, it’s a
bad thing…)
This commit is contained in:
Ombridride 2015-02-24 11:17:19 +01:00
parent 1e2fa0fcbd
commit eb872a1897
2 changed files with 6 additions and 0 deletions

View File

@ -31,3 +31,6 @@ minetest.register_alias("fishing:worm", "fishing:bait_worm")
-- Old itemframes mod to the new itemframes(v2) mod
minetest.register_alias("itemframes:pedestal", "itemframes:pedestal_cobble")
-- Remove "moreores:copper_rail" for "carts:copper_rail"
minetest.register_alias("moreores:copper_rail", "carts:rail_copper")

View File

@ -320,6 +320,7 @@ for orename,def in pairs(oredefs) do
add_ore(modname, def.description, orename, def)
end
--[[
-- Copper rail (special node):
minetest.register_craft({
output = "moreores:copper_rail 16",
@ -342,6 +343,7 @@ minetest.register_craft( {
}
})
--[[
-- Unique node:
minetest.register_node("moreores:copper_rail", {
description = S("Copper Rail"),
@ -369,6 +371,7 @@ minetest.register_node("moreores:copper_rail", {
},
},
})
--]]
-- mg support:
if minetest.get_modpath("mg") then