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_noise.h | |
parent | 6f22d14206824911b620ecec450689f84e6d278b (diff) | |
download | dragonfireclient-49509d2f746b7a8d50e685cfd0e0b391676b9466.tar.xz |
Log deprecated Lua function calls (#7491)
Diffstat (limited to 'src/script/lua_api/l_noise.h')
-rw-r--r-- | src/script/lua_api/l_noise.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/lua_api/l_noise.h b/src/script/lua_api/l_noise.h index 13e668507..9f50dfd3f 100644 --- a/src/script/lua_api/l_noise.h +++ b/src/script/lua_api/l_noise.h @@ -31,7 +31,7 @@ class LuaPerlinNoise : public ModApiBase private: NoiseParams np; static const char className[]; - static const luaL_Reg methods[]; + static luaL_Reg methods[]; // Exported functions @@ -63,7 +63,7 @@ class LuaPerlinNoiseMap : public ModApiBase Noise *noise; bool m_is3d; static const char className[]; - static const luaL_Reg methods[]; + static luaL_Reg methods[]; // Exported functions |