1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00
This commit is contained in:
Lars Mueller 2025-05-31 17:50:21 +02:00
parent ae83f4d264
commit 06bb45135e
2 changed files with 6 additions and 2 deletions

View file

@ -21,6 +21,8 @@
#include "lua_api/l_vmanip.h"
#include "lua_api/l_settings.h"
#include "lua_api/l_ipc.h"
#include "lua_api/l_rotation.h"
#include "lua_api/l_matrix4.h"
extern "C" {
#include <lualib.h>
@ -65,6 +67,8 @@ void EmergeScripting::InitializeModApi(lua_State *L, int top)
LuaPseudoRandom::Register(L);
LuaPcgRandom::Register(L);
LuaSecureRandom::Register(L);
LuaRotation::Register(L);
LuaMatrix4::Register(L);
LuaVoxelManip::Register(L);
LuaSettings::Register(L);

View file

@ -140,11 +140,11 @@ void ServerScripting::InitializeModApi(lua_State *L, int top)
LuaValueNoiseMap::Register(L);
LuaPseudoRandom::Register(L);
LuaPcgRandom::Register(L);
LuaRaycast::Register(L);
LuaSecureRandom::Register(L);
LuaVoxelManip::Register(L);
LuaRotation::Register(L);
LuaMatrix4::Register(L);
LuaRaycast::Register(L);
LuaVoxelManip::Register(L);
NodeMetaRef::Register(L);
NodeTimerRef::Register(L);
ObjectRef::Register(L);