mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-05 00:45:05 -05:00
Builtin: Change error to warning for light_source > 14
This commit is contained in:
parent
679c8de63f
commit
5091cb5ecd
@ -128,7 +128,9 @@ function core.register_item(name, itemdef)
|
||||
}
|
||||
end
|
||||
if itemdef.light_source and itemdef.light_source > core.LIGHT_MAX then
|
||||
error("Unable to register node: 'light_source' exceeds maximum: " .. name)
|
||||
itemdef.light_source = core.LIGHT_MAX
|
||||
core.log("warning", "Node 'light_source' value exceeds maximum," ..
|
||||
" limiting to maximum: " ..name)
|
||||
end
|
||||
setmetatable(itemdef, {__index = core.nodedef_default})
|
||||
core.registered_nodes[itemdef.name] = itemdef
|
||||
|
Loading…
Reference in New Issue
Block a user