1
0
Fork 0

apparently this helps Lua's garbage collection, it was possible to blow Lua's memory budget by flying very fast but this fixes that.

mineclone_compatibility
FaceDeer 2017-01-26 23:12:06 -07:00
parent 151d2e034b
commit 572329cfc6
1 changed files with 4 additions and 2 deletions

View File

@ -129,6 +129,8 @@ if not springs then
end
minetest.register_node("dynamic_liquid:clay", clay_def)
local data = {}
if springs then
local c_clay = minetest.get_content_id("default:clay")
local c_spring_clay = minetest.get_content_id("dynamic_liquid:clay")
@ -140,7 +142,7 @@ if springs then
return
end
local vm, emin, emax = minetest.get_mapgen_object("voxelmanip")
local data = vm:get_data()
vm:get_data(data)
for voxelpos, voxeldata in pairs(data) do
if voxeldata == c_clay then
@ -148,7 +150,7 @@ if springs then
end
end
vm:set_data(data)
vm:write_to_map()
vm:write_to_map()
end)
minetest.register_abm({