diff options
Diffstat (limited to 'schematics/bamboo_tree.lua')
-rw-r--r-- | schematics/bamboo_tree.lua | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/schematics/bamboo_tree.lua b/schematics/bamboo_tree.lua index da74125..15709da 100644 --- a/schematics/bamboo_tree.lua +++ b/schematics/bamboo_tree.lua @@ -76,7 +76,10 @@ ethereal.bambootree = { }, } -minetest.override_item("default:papyrus", { - walkable = true, - sunlight_propagates = true -}) +if ethereal.papyruswalk == true then + + minetest.override_item("default:papyrus", { + walkable = true, + sunlight_propagates = true + }) +end |