simplify random dropping position code

This commit is contained in:
AFCMS 2022-02-07 09:33:00 +01:00
parent 61e54ed617
commit c64d0e4558
Signed by untrusted user: AFCMS
GPG Key ID: 8720389A25B652E3
1 changed files with 1 additions and 1 deletions

View File

@ -368,7 +368,7 @@ function mcl_util.drop_items_from_meta_container(listname)
for i = 1, inv:get_size(listname) do
local stack = inv:get_stack(listname, i)
if not stack:is_empty() then
local p = vector.add(pos, vector.new(math.random(0, 10)/10 - 0.5, 0, math.random(0, 10)/10 - 0.5))
local p = vector.add(pos, vector.new(math.random() - 0.5, 0, math.random(0, 10)/10 - 0.5))
minetest.add_item(p, stack)
end
end