Skip to content

Commit

Permalink
Fix spread of items in falling code
Browse files Browse the repository at this point in the history
  • Loading branch information
PilzAdam committed Jan 12, 2013
1 parent 183c81b commit 443bbe6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builtin/falling.lua
Expand Up @@ -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
Expand Down

0 comments on commit 443bbe6

Please sign in to comment.