diff options
author | SmallJoker <SmallJoker@users.noreply.github.com> | 2018-07-01 12:31:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-01 12:31:49 +0200 |
commit | 49509d2f746b7a8d50e685cfd0e0b391676b9466 (patch) | |
tree | e73ea6eaab8682550acf38ae29c22ea00a74f6e6 /src/script/lua_api/l_object.h | |
parent | 6f22d14206824911b620ecec450689f84e6d278b (diff) | |
download | minetest-49509d2f746b7a8d50e685cfd0e0b391676b9466.tar.gz minetest-49509d2f746b7a8d50e685cfd0e0b391676b9466.tar.bz2 minetest-49509d2f746b7a8d50e685cfd0e0b391676b9466.zip |
Log deprecated Lua function calls (#7491)
Diffstat (limited to 'src/script/lua_api/l_object.h')
-rw-r--r-- | src/script/lua_api/l_object.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/script/lua_api/l_object.h b/src/script/lua_api/l_object.h index 76b8bc4a4..6876ea512 100644 --- a/src/script/lua_api/l_object.h +++ b/src/script/lua_api/l_object.h @@ -50,9 +50,8 @@ public: static ServerActiveObject* getobject(ObjectRef *ref); private: ServerActiveObject *m_object = nullptr; - static const char className[]; - static const luaL_Reg methods[]; + static luaL_Reg methods[]; static LuaEntitySAO* getluaobject(ObjectRef *ref); |