revert node_ok fallback return

This commit is contained in:
TenPlus1 2017-08-03 19:24:18 +01:00
parent ea4f85980d
commit 2312319fe3
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ local node_ok = function(pos, fallback)
return node
end
return {name = fallback}
return minetest.registered_nodes[fallback] -- {name = fallback}
end