Builtin: Change error to warning for light_source > 14

This commit is contained in:
paramat 2016-09-21 04:25:10 +01:00 committed by est31
parent 679c8de63f
commit 5091cb5ecd
1 changed files with 3 additions and 1 deletions

View File

@ -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