mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 16:45:20 +02:00
Register.lua: Throw error if node 'light_source' > core.LIGHT_MAX
Add 'core.LIGHT_MAX = 14' to builtin/game/constants.lua with the intention to replace misplaced 'default.LIGHT_MAX = 14' in Minetest Game. Add comment in light.h requiring the constant be changed in both places. Add lighting bug warning to note in lua_api.txt. There are hundreds of mod uses of 15 which causes a lighting bug.
This commit is contained in:
@@ -27,8 +27,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
*/
|
||||
|
||||
// This directly sets the range of light.
|
||||
// Actually this is not the real maximum, and this is not the
|
||||
// brightest. The brightest is LIGHT_SUN.
|
||||
// Actually this is not the real maximum, and this is not the brightest, the
|
||||
// brightest is LIGHT_SUN.
|
||||
// If changed, this constant as defined in builtin/game/constants.lua must
|
||||
// also be changed.
|
||||
#define LIGHT_MAX 14
|
||||
// Light is stored as 4 bits, thus 15 is the maximum.
|
||||
// This brightness is reserved for sunlight
|
||||
|
Reference in New Issue
Block a user