1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-11 17:51:04 +00:00

Apply various fixes to several things

This commit is contained in:
kwolekr 2013-06-27 22:33:31 -04:00
parent 6b3169e4d0
commit 9e100bc42b
4 changed files with 15 additions and 6 deletions

View file

@ -88,7 +88,7 @@ int LuaVoxelManip::l_set_data(lua_State *L)
int volume = vm->m_area.getVolume();
for (int i = 0; i != volume; i++) {
lua_rawgeti(L, 2, i + 1);
content_t c = lua_tonumber(L, -1);
content_t c = lua_tointeger(L, -1);
vm->m_data[i].setContent(c);
@ -224,7 +224,11 @@ int LuaVoxelManip::create_object(lua_State *L)
{
NO_MAP_LOCK_REQUIRED;
Map *map = &(get_scriptapi(L)->getEnv()->getMap());
Environment *env = get_scriptapi(L)->getEnv();
if (!env)
return 0;
Map *map = &(env->getMap());
LuaVoxelManip *o = new LuaVoxelManip(map);
*(void **)(lua_newuserdata(L, sizeof(void *))) = o;