diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-07-12 20:27:07 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-07-12 20:27:07 +0100 |
commit | 592c2e8ec212f0c2e6102a2ab41163b58aab409a (patch) | |
tree | 6b382aa032d086d16f1045658ced20104b05f8d5 | |
parent | acb69c6680d93ec66b497614a88d720449350c8b (diff) |
quick tidy
-rw-r--r-- | bonemeal.lua | 3 | ||||
-rw-r--r-- | leaves.lua | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/bonemeal.lua b/bonemeal.lua index a7edcd9..f49e757 100644 --- a/bonemeal.lua +++ b/bonemeal.lua @@ -68,8 +68,7 @@ local function growth(pointed_thing) local pos = pointed_thing.under
local node = minetest.get_node(pos)
- if node.name == ""
- or node.name == "ignore" then
+ if node.name == "ignore" then
return
end
@@ -195,7 +195,7 @@ minetest.register_node("ethereal:palmleaves", { drop = { max_items = 1, items = { - {items = {"ethereal:palm_sapling"}, rarity = 15}, + {items = {"ethereal:palm_sapling"}, rarity = 10}, {items = {"ethereal:palmleaves"}} } }, |