diff options
Diffstat (limited to 'papyrus.lua')
-rw-r--r-- | papyrus.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/papyrus.lua b/papyrus.lua index fe245b2..0c71893 100644 --- a/papyrus.lua +++ b/papyrus.lua @@ -1,3 +1,4 @@ + -- override default papyrus to make it walkable minetest.override_item("default:papyrus", {walkable = true, sunlight_propagates = true}) @@ -5,8 +6,8 @@ minetest.override_item("default:papyrus", {walkable = true, sunlight_propagates minetest.register_abm({ nodenames = {"default:papyrus", "ethereal:bamboo"}, neighbors = {"group:soil"}, - interval = 50, - chance = 20, + interval = 14, --50, + chance = 71, --20, catch_up = false, action = function(pos, node) |