Allow any character in formspec strings with escape char
[oweals/minetest.git] / builtin / falling.lua
index 903c5dfd0c6b281dbe2eec83478ea979d6d77026..d3af36f2934c823225a28076ad8b3d52d85e31fd 100644 (file)
@@ -96,9 +96,9 @@ function drop_attached_node(p)
        minetest.env:remove_node(p)
        for _,item in ipairs(minetest.get_node_drops(nn, "")) do
                local pos = {
-                       x = p.x + math.random(60)/60-0.3,
-                       y = p.y + math.random(60)/60-0.3,
-                       z = p.z + math.random(60)/60-0.3,
+                       x = p.x + math.random()/2 - 0.25,
+                       y = p.y + math.random()/2 - 0.25,
+                       z = p.z + math.random()/2 - 0.25,
                }
                minetest.env:add_item(pos, item)
        end