Update light levels
This commit is contained in:
parent
9dfc64b383
commit
526bbba68a
8 changed files with 9 additions and 9 deletions
|
@ -5,7 +5,6 @@
|
|||
WATER_ALPHA = 160
|
||||
WATER_VISC = 1
|
||||
LAVA_VISC = 7
|
||||
LIGHT_MAX = 20
|
||||
|
||||
-- Definitions made by this mod that other mods can use too
|
||||
default = {}
|
||||
|
|
|
@ -326,7 +326,7 @@ minetest.register_node("default:sea_lantern", {
|
|||
description = "Sea Lantern",
|
||||
paramtype2 = "facedir",
|
||||
stack_max = 64,
|
||||
light_source = LIGHT_MAX,
|
||||
light_source = 14,
|
||||
drop = {
|
||||
max_items = 1,
|
||||
items = {
|
||||
|
@ -975,7 +975,7 @@ minetest.register_node("default:lava_flowing", {
|
|||
},
|
||||
paramtype = "light",
|
||||
paramtype2 = "flowingliquid",
|
||||
light_source = LIGHT_MAX,
|
||||
light_source = 14,
|
||||
walkable = false,
|
||||
pointable = false,
|
||||
diggable = false,
|
||||
|
@ -1009,7 +1009,7 @@ minetest.register_node("default:lava_source", {
|
|||
}
|
||||
},
|
||||
paramtype = "light",
|
||||
light_source = LIGHT_MAX,
|
||||
light_source = 14,
|
||||
walkable = false,
|
||||
pointable = false,
|
||||
diggable = false,
|
||||
|
@ -1346,7 +1346,7 @@ minetest.register_node("default:furnace_active", {
|
|||
tiles = {"default_furnace_top.png", "default_furnace_bottom.png", "default_furnace_side.png",
|
||||
"default_furnace_side.png", "default_furnace_side.png", "default_furnace_front_active.png"},
|
||||
paramtype2 = "facedir",
|
||||
light_source = 8,
|
||||
light_source = 12,
|
||||
drop = "default:furnace",
|
||||
groups = {cracky=2, not_in_creative_inventory=1},
|
||||
legacy_facedir_simple = true,
|
||||
|
|
BIN
mods/default/textures/moon.png
Normal file
BIN
mods/default/textures/moon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
BIN
mods/default/textures/sun.png
Normal file
BIN
mods/default/textures/sun.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2 KiB |
Loading…
Add table
Add a link
Reference in a new issue