illuna_aestival: wiki node should glow

master
Milan 2021-01-27 20:43:29 +01:00
parent cd94ee57ee
commit 270d99232d
1 changed files with 4 additions and 2 deletions

View File

@ -296,7 +296,8 @@ minetest.override_item("wiki:wiki", {
"illuna_wiki_side.png",
},
on_construct = illuna.wikiconstruct,
on_destruct = illuna.wikidestruct
on_destruct = illuna.wikidestruct,
light_source = 3,
})
minetest.register_entity(":illuna:wikitop", {
@ -307,7 +308,8 @@ minetest.register_entity(":illuna:wikitop", {
automatic_rotate = math.pi * 0.15,
nametag = "Illuna Wiki",
nametag_color = "#6893c4",
textures = {"illuna:wikitop"},
textures = {"illuna:wikitop"},
glow = 6,
on_activate = function(self)
local pos = self.object:getpos()
local pos_under = {x=pos.x, y=pos.y-1, z=pos.z}