mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 08:35:20 +02:00
Fix entity related bugs
* Make minetest.add_entity() binary-safe * Fix on_death pushing dummy ObjectRef instead of nil
This commit is contained in:
@@ -640,7 +640,7 @@ int ModApiEnvMod::l_add_entity(lua_State *L)
|
||||
|
||||
v3f pos = checkFloatPos(L, 1);
|
||||
const char *name = luaL_checkstring(L, 2);
|
||||
const char *staticdata = luaL_optstring(L, 3, "");
|
||||
std::string staticdata = readParam<std::string>(L, 3, "");
|
||||
|
||||
ServerActiveObject *obj = new LuaEntitySAO(env, pos, name, staticdata);
|
||||
int objectid = env->addActiveObject(obj);
|
||||
|
Reference in New Issue
Block a user