mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2025-01-10 00:59:35 +01:00
Fix crashes
This commit is contained in:
parent
41860500a3
commit
78afadd8b1
1 changed files with 1 additions and 1 deletions
|
@ -374,7 +374,7 @@ local CURVY_RAILS_MAP = {
|
||||||
["mcl_minecarts:rail"] = "mcl_minecarts:rail_v2",
|
["mcl_minecarts:rail"] = "mcl_minecarts:rail_v2",
|
||||||
}
|
}
|
||||||
for old,new in pairs(CURVY_RAILS_MAP) do
|
for old,new in pairs(CURVY_RAILS_MAP) do
|
||||||
nodenames = mcl_util.table_keys(STRAIGHT_RAILS_MAP),
|
local new_def = minetest.registered_nodes[new]
|
||||||
minetest.register_node(old, {
|
minetest.register_node(old, {
|
||||||
drawtype = "raillike",
|
drawtype = "raillike",
|
||||||
inventory_image = new_def.inventory_image,
|
inventory_image = new_def.inventory_image,
|
||||||
|
|
Loading…
Reference in a new issue