mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix compiler warnings
This commit is contained in:
parent
6952bab519
commit
492aab20fe
6 changed files with 23 additions and 23 deletions
|
@ -132,9 +132,6 @@ int LuaMinimap::l_show(lua_State *L)
|
|||
if (!g_settings->getBool("enable_minimap"))
|
||||
return 1;
|
||||
|
||||
Client *client = getClient(L);
|
||||
assert(client);
|
||||
|
||||
LuaMinimap *ref = checkObject<LuaMinimap>(L, 1);
|
||||
Minimap *m = getobject(ref);
|
||||
|
||||
|
@ -149,9 +146,6 @@ int LuaMinimap::l_show(lua_State *L)
|
|||
|
||||
int LuaMinimap::l_hide(lua_State *L)
|
||||
{
|
||||
Client *client = getClient(L);
|
||||
assert(client);
|
||||
|
||||
LuaMinimap *ref = checkObject<LuaMinimap>(L, 1);
|
||||
Minimap *m = getobject(ref);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue