LuaVoxelManip: Update parameter index of set_lighting()
authorkwolekr <kwolekr@minetest.net>
Thu, 21 Nov 2013 05:45:17 +0000 (00:45 -0500)
committerkwolekr <kwolekr@minetest.net>
Thu, 21 Nov 2013 05:45:17 +0000 (00:45 -0500)
src/script/lua_api/l_vmanip.cpp

index 1e9cc350f432194f24e1f1f88245ebfb99e7e0ed..db8884e10f290e4a91d2d257b1fa815def1f9e3a 100644 (file)
@@ -163,8 +163,8 @@ int LuaVoxelManip::l_set_lighting(lua_State *L)
                return 0;
 
        u8 light;
-       light  = (getintfield_default(L, 4, "day",   0) & 0x0F);
-       light |= (getintfield_default(L, 4, "night", 0) & 0x0F) << 8;
+       light  = (getintfield_default(L, 2, "day",   0) & 0x0F);
+       light |= (getintfield_default(L, 2, "night", 0) & 0x0F) << 8;
        
        ManualMapVoxelManipulator *vm = o->vm;