diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-10-18 14:33:13 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-10-18 14:33:13 +0200 |
commit | 7e0f8fba02ab66d88925759ca6165a0feecb8c05 (patch) | |
tree | eb10346e82832e0651998ec4b7e1f365eb1d2bf9 /src/script/lua_api | |
parent | 151e5782e1f1ed02bb12757c8fe95ca6449b1b89 (diff) | |
download | dragonfireclient-7e0f8fba02ab66d88925759ca6165a0feecb8c05.tar.xz |
Another Lint commit
Diffstat (limited to 'src/script/lua_api')
-rw-r--r-- | src/script/lua_api/l_clientobject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/lua_api/l_clientobject.cpp b/src/script/lua_api/l_clientobject.cpp index 2c3b40c55..462de1a09 100644 --- a/src/script/lua_api/l_clientobject.cpp +++ b/src/script/lua_api/l_clientobject.cpp @@ -177,7 +177,7 @@ void ClientObjectRef::Register(lua_State *L) lua_pop(L, 1); // Drop metatable luaL_openlib(L, 0, methods, 0); // fill methodtable - lua_pop(L, 1); // Drop methodtable + lua_pop(L, 1); // Drop methodtable } const char ClientObjectRef::className[] = "ClientObjectRef"; |