Make computers emmit light level 7

master
octacian 2017-01-29 15:26:46 -08:00
parent de79747243
commit 03d8e9235b
1 changed files with 2 additions and 0 deletions

View File

@ -561,6 +561,7 @@ function digicompute.register_computer(itemstring, def)
})
-- bios
minetest.register_node("digicompute:"..itemstring.."_bios", {
light_source = def.light_source or 7,
digicompute = {
state = "bios",
base = itemstring,
@ -582,6 +583,7 @@ function digicompute.register_computer(itemstring, def)
})
-- on
minetest.register_node("digicompute:"..itemstring.."_on", {
light_source = def.light_source or 7,
digicompute = {
state = "on",
base = itemstring,