forked from nalc/homedecor_modpack
LIGHT_MAX -> default.LIGHT_MAX
This commit is contained in:
parent
337dc05e70
commit
df84e62798
|
@ -70,7 +70,7 @@ minetest.register_node("chains:chain_top_brass", {
|
||||||
minetest.register_node("chains:chandelier", {
|
minetest.register_node("chains:chandelier", {
|
||||||
description = "Chandelier (wrought iron)",
|
description = "Chandelier (wrought iron)",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
light_source = LIGHT_MAX-2,
|
light_source = default.LIGHT_MAX-2,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
climbable = true,
|
climbable = true,
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
|
@ -97,7 +97,7 @@ minetest.register_node("chains:chandelier", {
|
||||||
minetest.register_node("chains:chandelier_brass", {
|
minetest.register_node("chains:chandelier_brass", {
|
||||||
description = "Chandelier (brass)",
|
description = "Chandelier (brass)",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
light_source = LIGHT_MAX-2,
|
light_source = default.LIGHT_MAX-2,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
climbable = true,
|
climbable = true,
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
|
|
|
@ -111,7 +111,7 @@ homedecor.register("ceiling_fan", {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
groups = { snappy = 3 },
|
groups = { snappy = 3 },
|
||||||
light_source = LIGHT_MAX-1,
|
light_source = default.LIGHT_MAX-1,
|
||||||
sounds = default.node_sound_glass_defaults(),
|
sounds = default.node_sound_glass_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -196,7 +196,7 @@ homedecor.register("fishtank_lighted", {
|
||||||
"homedecor_fishtank_water_top_lighted.png",
|
"homedecor_fishtank_water_top_lighted.png",
|
||||||
"homedecor_fishtank_sides_lighted.png",
|
"homedecor_fishtank_sides_lighted.png",
|
||||||
},
|
},
|
||||||
light_source = LIGHT_MAX-4,
|
light_source = default.LIGHT_MAX-4,
|
||||||
use_texture_alpha = true,
|
use_texture_alpha = true,
|
||||||
selection_box = ft_cbox,
|
selection_box = ft_cbox,
|
||||||
collision_box = ft_cbox,
|
collision_box = ft_cbox,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user