Skip to content
Snippets Groups Projects
Commit 732eb72a authored by Tomas Brod's avatar Tomas Brod Committed by kwolekr
Browse files

Fix minetest.clear_* creating new LOCAL table instead of clearing the existing one.

On calling clear_redistered_biomes the registered_biomes table is cleared
by creating a new empty table, but the pointer is not updated to point to
the new one. So after calling more register_biome, the registered_biome
table always contains 0 items, which is an error. Instead, the table is
cleared by removing all its items so the pointer (minetest.registered_*)
remains valid.
parent 068d561a
No related branches found
No related tags found
No related merge requests found
......@@ -398,7 +398,9 @@ local function make_registration_wrap(reg_fn_name, clear_fn_name)
local orig_clear_fn = core[clear_fn_name]
core[clear_fn_name] = function()
list = {}
for k in pairs(list) do
list[k] = nil
end
return orig_clear_fn()
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment