mirror of
https://github.com/minetest/minetest.git
synced 2025-07-06 09:50:23 +02:00
Fix 2 warnings reported by GCC
* ClientEnvironment::m_irr is not used anymore since a recent cleanup * l_vmanip constructor ordering
This commit is contained in:
@ -365,7 +365,9 @@ int LuaVoxelManip::l_get_emerged_area(lua_State *L)
|
||||
return 2;
|
||||
}
|
||||
|
||||
LuaVoxelManip::LuaVoxelManip(MMVManip *mmvm, bool is_mg_vm) : vm(mmvm), is_mapgen_vm(is_mg_vm)
|
||||
LuaVoxelManip::LuaVoxelManip(MMVManip *mmvm, bool is_mg_vm) :
|
||||
is_mapgen_vm(is_mg_vm),
|
||||
vm(mmvm)
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user