We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fb2102 commit 2424c0cCopy full SHA for 2424c0c
we_undo/init.lua
@@ -1025,6 +1025,10 @@ local function my_we_deserialize(pos_base, ...)
1025
local current_node = minetest.get_node(entry)
1026
local have_changes = 3
1027
local def_ent = minetest.registered_nodes[entry.name]
1028
+ if not def_ent then
1029
+ entry = table.copy(entry)
1030
+ entry.name = "air"
1031
+ end
1032
local def_cur = minetest.registered_nodes[current_node.name]
1033
if current_node.name == entry.name then
1034
current_node.name = nil
0 commit comments