Merge pull request #33 from jcfrosty/patch-2

Update init.lua
master
D00Med 2018-06-18 13:45:37 +10:00 committed by GitHub
commit 661fe0e2a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ local apply_weather = function(player, pos, weather_type)
for i=1,25 do
minetest.add_particle({
pos = {x=pos.x+math.random(-10,10), y=pos.y+math.random(12,17), z=pos.z+math.random(-10,10)},
velocity = {x=0, y=math.random(-25,-30), z=0},
velocity = {x=0, y=math.random(-30,-25), z=0},
acceleration = {x=0, y=-1, z=0},
expirationtime = 2,
size = math.random(3,5),
@ -207,4 +207,4 @@ minetest.register_chatcommand("change_weather", {
end
end,
})
end
end