Remove Emerge-0 warning that occurs when placing mineshafts
This commit is contained in:
parent
05c7dc9b35
commit
b1ca290db1
|
@ -221,10 +221,7 @@ local function update_rail_connections(pos, opt)
|
||||||
|
|
||||||
local node = minetest.get_node(pos)
|
local node = minetest.get_node(pos)
|
||||||
local nodedef = minetest.registered_nodes[node.name]
|
local nodedef = minetest.registered_nodes[node.name]
|
||||||
if not nodedef or not nodedef._mcl_minecarts then
|
if not nodedef or not nodedef._mcl_minecarts then return end
|
||||||
minetest.log("warning", "attempting to rail connect to "..node.name)
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Get the mappings to use
|
-- Get the mappings to use
|
||||||
local rules = HORIZONTAL_RULES_BY_RAIL_GROUP[nodedef.groups.rail]
|
local rules = HORIZONTAL_RULES_BY_RAIL_GROUP[nodedef.groups.rail]
|
||||||
|
|
Loading…
Reference in New Issue