From f25c3ac680e8143f141158ed652750c2fd135da4 Mon Sep 17 00:00:00 2001 From: NathanSalapat Date: Sun, 26 Apr 2015 12:50:38 -0500 Subject: [PATCH] Fixed HUGE stupid mistake. --- nodes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes.lua b/nodes.lua index 83ea697..e6086f0 100644 --- a/nodes.lua +++ b/nodes.lua @@ -390,7 +390,7 @@ minetest.register_node('survival:well_top', { end end, on_metadata_inventory_take = function(pos, listname, index, stack, player) - local chance = math.random(1,2) + local chance = math.random(1,500) if chance == 2 then -- Let's change the formspec' local meta = minetest.env:get_meta(pos)