mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-26 18:21:04 +00:00
Determine light_propagates from paramtype
This commit is contained in:
parent
e8539d4dae
commit
3e95b8a158
5 changed files with 24 additions and 21 deletions
|
@ -97,7 +97,6 @@ minetest.register_nodedef_defaults({
|
|||
post_effect_color = {a=0, r=0, g=0, b=0},
|
||||
paramtype = "none",
|
||||
is_ground_content = false,
|
||||
light_propagates = false,
|
||||
sunlight_propagates = false,
|
||||
walkable = true,
|
||||
pointable = true,
|
||||
|
@ -133,7 +132,6 @@ minetest.register_nodedef_defaults({
|
|||
minetest.register_node("air", {
|
||||
drawtype = "airlike",
|
||||
paramtype = "light",
|
||||
light_propagates = true,
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
pointable = false,
|
||||
|
@ -145,7 +143,6 @@ minetest.register_node("air", {
|
|||
minetest.register_node("ignore", {
|
||||
drawtype = "airlike",
|
||||
paramtype = "none",
|
||||
light_propagates = false,
|
||||
sunlight_propagates = false,
|
||||
walkable = false,
|
||||
pointable = false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue