No sunlight propagates through slab/stair

This commit is contained in:
Wuzzy 2017-02-10 03:12:48 +01:00
parent 7c14697745
commit aeaf62a559
2 changed files with 4 additions and 0 deletions

View File

@ -602,6 +602,7 @@ function mcstair.add(name, stairtiles)
paramtype = "light",
paramtype2 = "facedir",
is_ground_content = false,
sunlight_propagates = false,
groups = outer_groups,
sounds = node_def.sounds,
node_box = {
@ -622,6 +623,7 @@ function mcstair.add(name, stairtiles)
paramtype = "light",
paramtype2 = "facedir",
is_ground_content = false,
sunlight_propagates = false,
groups = inner_groups,
sounds = node_def.sounds,
node_box = {

View File

@ -19,6 +19,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
tiles = images,
paramtype = "light",
paramtype2 = "facedir",
sunlight_propagates = false,
is_ground_content = false,
groups = groups,
sounds = sounds,
@ -111,6 +112,7 @@ function stairs.register_slab(subname, recipeitem, groups, images, description,
tiles = images,
paramtype = "light",
paramtype2 = "facedir",
sunlight_propagates = false,
is_ground_content = false,
groups = groups,
sounds = sounds,