[spidermob] Update to Git patch 091d305:
https://github.com/AntumDeluge/mtmod-spidermob/tree/091d305master
parent
a2b46e2ad5
commit
4a963ca20b
|
@ -544,7 +544,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
|
||||||
[patch.signs_lib]: https://github.com/AntumDeluge/mtmod-signs_lib/tree/fe46611
|
[patch.signs_lib]: https://github.com/AntumDeluge/mtmod-signs_lib/tree/fe46611
|
||||||
[patch.snowdrift]: https://github.com/AntumDeluge/mtmod-snowdrift/tree/1b9da4f
|
[patch.snowdrift]: https://github.com/AntumDeluge/mtmod-snowdrift/tree/1b9da4f
|
||||||
[patch.spawneggs]: https://github.com/AntumDeluge/mtmod-spawneggs/tree/b47f49f
|
[patch.spawneggs]: https://github.com/AntumDeluge/mtmod-spawneggs/tree/b47f49f
|
||||||
[patch.spidermob]: https://github.com/AntumDeluge/mtmod-spidermob/tree/7f2e77d
|
[patch.spidermob]: https://github.com/AntumDeluge/mtmod-spidermob/tree/091d305
|
||||||
[patch.technic]: https://github.com/AntumDeluge/mtmod-technic/tree/661c23d
|
[patch.technic]: https://github.com/AntumDeluge/mtmod-technic/tree/661c23d
|
||||||
[patch.trash_can]: https://github.com/AntumDeluge/mtmod-trash_can/tree/5a92bf4
|
[patch.trash_can]: https://github.com/AntumDeluge/mtmod-trash_can/tree/5a92bf4
|
||||||
[patch.unifieddyes]: https://github.com/AntumDeluge/mtmod-unifieddyes/tree/0e575d9
|
[patch.unifieddyes]: https://github.com/AntumDeluge/mtmod-unifieddyes/tree/0e575d9
|
||||||
|
|
|
@ -701,7 +701,7 @@ function spidermob:register_mob(name, def)
|
||||||
local p = pos
|
local p = pos
|
||||||
p.y = p.y + self.blood_offset
|
p.y = p.y + self.blood_offset
|
||||||
|
|
||||||
minetest.add_particlespawner(
|
minetest.add_particlespawner({
|
||||||
5, --blood_amount, --amount
|
5, --blood_amount, --amount
|
||||||
0.25, --time
|
0.25, --time
|
||||||
{x=p.x-0.2, y=p.y-0.2, z=p.z-0.2}, --minpos
|
{x=p.x-0.2, y=p.y-0.2, z=p.z-0.2}, --minpos
|
||||||
|
@ -716,7 +716,7 @@ function spidermob:register_mob(name, def)
|
||||||
1, --maxsize
|
1, --maxsize
|
||||||
false, --collisiondetection
|
false, --collisiondetection
|
||||||
self.blood_texture --texture
|
self.blood_texture --texture
|
||||||
)
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
-- knock back effect, adapted from blockmen's pyramids mod
|
-- knock back effect, adapted from blockmen's pyramids mod
|
||||||
|
|
Loading…
Reference in New Issue