diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-12-06 10:48:31 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-12-06 10:48:31 +0000 |
commit | adabd04d7b33ffa6d2a91c521cf713e092b3dc6f (patch) | |
tree | 53b43944945dc255800c343ecad39963a4a90bd3 /schematics | |
parent | f34b9b00c6c1e025754a71536ffd1b112cbce874 (diff) |
Few new tweaks thanks to RQWorldblender
Diffstat (limited to 'schematics')
-rw-r--r-- | schematics/waterlily.lua | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/schematics/waterlily.lua b/schematics/waterlily.lua index 1936b04..0373a88 100644 --- a/schematics/waterlily.lua +++ b/schematics/waterlily.lua @@ -12,6 +12,9 @@ ethereal.waterlily = { }, } -minetest.override_item("flowers:waterlily", { - walkable = true, -}) +if ethereal.lilywalk == true then + + minetest.override_item("flowers:waterlily", { + walkable = true, + }) +end |