Update light levels

This commit is contained in:
Wuzzy 2017-01-04 10:11:35 +01:00
parent 9dfc64b383
commit 526bbba68a
8 changed files with 9 additions and 9 deletions

View file

@ -9,6 +9,7 @@ minetest.register_node("farming:mushroom_brown", {
walkable = false,
groups = {snappy=3,flammable=2,mushroom=1,attached_node=1},
sounds = default.node_sound_leaves_defaults(),
light_source = 1,
selection_box = {
type = "fixed",
fixed = { -0.15, -0.5, -0.15, 0.15, 0.015, 0.15 },
@ -43,4 +44,4 @@ minetest.register_craft({
type = "shapeless",
output = "farming:mushroom_stew",
recipe = {'default:bowl', 'farming:mushroom_brown', 'farming:mushroom_red'}
})
})

View file

@ -274,7 +274,7 @@ minetest.register_node("farming:pumpkin_face_light", {
description = "Jack o'Lantern",
stack_max = 64,
paramtype2 = "facedir",
light_source = LIGHT_MAX,
light_source = 14,
tiles = {"farming_pumpkin_top.png", "farming_pumpkin_top.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_face_light.png"},
groups = {choppy=2, oddly_breakable_by_hand=2, flammable=2},
})