1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-14 00:55:20 +02:00

Fix issue 1527

https://github.com/minetest/minetest/issues/1527
This commit is contained in:
Craig Robbins
2014-07-30 11:39:24 +10:00
committed by kwolekr
parent 17345404ba
commit 6929206bc2

View File

@@ -31,8 +31,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
int LuaVoxelManip::gc_object(lua_State *L)
{
LuaVoxelManip *o = *(LuaVoxelManip **)(lua_touserdata(L, 1));
if (!o->is_mapgen_vm)
delete o;
delete o;
return 0;
}
@@ -319,7 +318,8 @@ LuaVoxelManip::LuaVoxelManip(Map *map)
LuaVoxelManip::~LuaVoxelManip()
{
delete vm;
if (!is_mapgen_vm)
delete vm;
}
// LuaVoxelManip()