diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-12-01 09:41:23 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-12-01 09:41:23 +0000 |
commit | 8309e6a777b15a5f9b324c93ff9d89045ebc0eb5 (patch) | |
tree | 97b84df63337c7e224ac351f5a097a4b616dc84e /schematics/bamboo_tree.lua | |
parent | 06495be4a079c780f2be6f5099475852913fb0ef (diff) |
code tweaks and additions (thanks RQWorldblender)
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 |