signalbubble to be more random

master
Brett O'Donnell 2012-09-15 21:16:44 +09:30
parent 879dc0f3c7
commit dbf45e6015
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ minetest.register_abm({
interval = 1,
chance = 5,
action = function(pos)
minetest.env:add_entity({x=pos.x,y=pos.y,z=pos.z}, "particles:signalbubble")
minetest.env:add_entity({x=pos.x+math.random()*0.5,y=pos.y,z=pos.z+math.random()*0.5}, "particles:signalbubble")
end,
})