[snowdrift] Update to Git patch 1b9da4f:

https://github.com/AntumDeluge/mtmod-snowdrift/tree/1b9da4f
This commit is contained in:
AntumDeluge 2017-05-20 16:57:35 -07:00
parent 1138806856
commit f4b8543a99
2 changed files with 6 additions and 5 deletions

View File

@ -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

View File

@ -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,