diff --git a/README.md b/README.md index 571d6771..a0d43872 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m * [vector_extras][] ([WTFPL][lic.vector_extras]) -- version: [472deb6 Git][ver.vector_extras] *2017-01-25* * weather/ * [lightning][] ([LGPL / CC BY-SA][lic.lightning]) -- version: [39bd36c Git][ver.lightning] *2017-02-20* - * [snowdrift][] ([MIT][lic.snowdrift]) -- version: [fcb0537 Git][ver.snowdrift] *2017-04-15* + * [snowdrift][] ([MIT][lic.snowdrift]) -- version: [fcb0537 Git][ver.snowdrift] *2017-04-15* ([patched][patch.snowdrift]) * wood/ * [coloredwood][] ([LGPL][lic.lgpl3.0]) -- version: [fc4ab15 Git][ver.coloredwood] *2017-03-18* ([patched][patch.coloredwood]) * [mywoodslopes][] ([DWYWPL][lic.dwywpl]) -- version: [3a1b531 Git][ver.mywoodslopes] *2016-03-23* @@ -570,6 +570,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m [patch.quartz]: https://github.com/AntumDeluge/mtmod-quartz/tree/d23dabd [patch.rainbow_ore]: https://github.com/AntumDeluge/mtmod-rainbow_ore/tree/60dc35e [patch.signs_lib]: https://github.com/AntumDeluge/mtmod-signs_lib/tree/fe46611 +[patch.snowdrift]: https://github.com/AntumDeluge/mtmod-snowdrift/tree/1b9da4f [patch.spawneggs]: https://github.com/AntumDeluge/mtmod-spawneggs/tree/b47f49f [patch.spidermob]: https://github.com/AntumDeluge/mtmod-spidermob/tree/00b6107 [patch.technic]: https://github.com/AntumDeluge/mtmod-technic/tree/d3a58d8 diff --git a/mods/weather/snowdrift/init.lua b/mods/weather/snowdrift/init.lua index 9f6f3050..c6e74d11 100644 --- a/mods/weather/snowdrift/init.lua +++ b/mods/weather/snowdrift/init.lua @@ -153,12 +153,12 @@ minetest.register_globalstep(function(dtime) y = pposy + 8 + math.random(0, 1), z = pposz - 20 + math.random(0, 47) }, - vel = { + velocity = { x = 0.0, y = -2.0, z = -1.0 }, - acc = {x = 0, y = 0, z = 0}, + acceleration = {x = 0, y = 0, z = 0}, expirationtime = 8.5, size = 2.8, collisiondetection = COLLIDE, @@ -177,12 +177,12 @@ minetest.register_globalstep(function(dtime) y = pposy + 8 + math.random(0, 5), z = pposz - 8 + math.random(0, 16) }, - vel = { + velocity = { x = 0.0, y = -10.0, z = 0.0 }, - acc = {x = 0, y = 0, z = 0}, + acceleration = {x = 0, y = 0, z = 0}, expirationtime = 2.1, size = 2.8, collisiondetection = COLLIDE,