mirror of
https://github.com/minetest/minetest.git
synced 2025-02-17 10:23:47 +01:00
Fix wrong return value in get_sky Lua call since ad9fcf859ec2347325830e09504ae96968b51ea8
Fix #5803
This commit is contained in:
@ -1732,7 +1732,7 @@ int ObjectRef::l_get_sky(lua_State *L)
|
|||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
lua_pushboolean(L, clouds);
|
lua_pushboolean(L, clouds);
|
||||||
return 3;
|
return 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
// set_clouds(self, {density=, color=, ambient=, height=, thickness=, speed=})
|
// set_clouds(self, {density=, color=, ambient=, height=, thickness=, speed=})
|
||||||
|
Reference in New Issue
Block a user