Builtin: Make item entities glow less (#9594)

minor adjustment to #9200
This commit is contained in:
sfan5 2020-04-04 21:27:30 +02:00 committed by Nils Dagsson Moskopp
parent 8338e55fac
commit fb880865e0
Signed by: erlehmann
GPG Key ID: A3BC671C35191080
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ core.register_entity(":__builtin:item", {
local size = 0.2 + 0.1 * (count / max_count) ^ (1 / 3) local size = 0.2 + 0.1 * (count / max_count) ^ (1 / 3)
local coll_height = size * 0.75 local coll_height = size * 0.75
local def = core.registered_nodes[itemname] local def = core.registered_nodes[itemname]
local glow = def and def.light_source local glow = def and math.floor(def.light_source / 2 + 0.5)
self.object:set_properties({ self.object:set_properties({
is_visible = true, is_visible = true,