[mobs_goblins] Update to Git commit 7e59723 & patch c34401a:
Commit: https://github.com/FreeLikeGNU/mobs_goblins/tree/7e59723 Patch: https://github.com/AntumDeluge/mtmod-mobs_goblins/tree/c34401amaster
parent
63a8b51555
commit
551f111732
|
@ -60,7 +60,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
|
|||
* [rainbow_ore][] ([LGPL][lic.rainbow_ore]) -- version: [6e77693 Git][ver.rainbow_ore] *2015-11-02* ([patched][patch.rainbow_ore])
|
||||
* [unifieddyes][] ([GPL][lic.gpl2.0]) -- version: [8b20a06 Git][ver.unifieddyes] *2017-06-04*
|
||||
* mobiles/aggressive/
|
||||
* [mobs_goblins][] ([CC-BY-SA / CC-BY / CC0][lic.mobs_goblins]) -- version: [6c7fdf9 Git][ver.mobs_goblins] *2017-05-23* ([patched][patch.mobs_goblins])
|
||||
* [mobs_goblins][] ([CC-BY-SA / CC-BY / CC0][lic.mobs_goblins]) -- version: [7e59723 Git][ver.mobs_goblins] *2017-06-08* ([patched][patch.mobs_goblins])
|
||||
* [mobs_monster][] ([MIT][lic.mobs_monster]) -- version: [f6d0e01 Git][ver.mobs_monster] *2017-04-27*
|
||||
* [sneeker][] ([WTFPL][lic.wtfpl] / [CC0][lic.cc0]) -- version: [a56b9c2 Git][ver.sneeker] *2017-06-07*
|
||||
* [spidermob][] ([LGPL][lic.lgpl2.1] / [CC BY-SA][lic.ccbysa3.0] / [MIT][lic.mit] / [WTFPL][lic.spidermob] / [Unlicense][lic.unlicense]) -- version [8f9080a Git][ver.spidermob] *2017-06-02* ([patched][patch.spidermob])
|
||||
|
@ -462,7 +462,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
|
|||
[ver.mob_horse]: https://github.com/tenplus1/mob_horse/tree/dee3883
|
||||
[ver.mobf_core]: https://github.com/sapier/mobf_core/tree/1199ca9
|
||||
[ver.mobs_animal]: https://github.com/tenplus1/mobs_animal/tree/ebc2e3a
|
||||
[ver.mobs_goblins]: https://github.com/FreeLikeGNU/mobs_goblins/tree/6c7fdf9
|
||||
[ver.mobs_goblins]: https://github.com/FreeLikeGNU/mobs_goblins/tree/7e59723
|
||||
[ver.mobs_monster]: https://github.com/tenplus1/mobs_monster/tree/f6d0e01
|
||||
[ver.mobs_redo]: https://github.com/tenplus1/mobs_redo/tree/4eb1c93
|
||||
[ver.more_chests]: https://github.com/minetest-mods/more_chests/tree/c597779
|
||||
|
@ -548,7 +548,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
|
|||
[patch.minetest_game]: https://github.com/AntumDeluge/mtgame-minetest/tree/796035a
|
||||
[patch.mobf_core]: https://github.com/AntumDeluge/mtmp-mobf_core/tree/c0f3639
|
||||
[patch.mobs_animal]: https://github.com/AntumDeluge/mtmod-mobs_animal/tree/3f3249e
|
||||
[patch.mobs_goblins]: https://github.com/AntumDeluge/mtmod-mobs_goblins/tree/fefd6bf
|
||||
[patch.mobs_goblins]: https://github.com/AntumDeluge/mtmod-mobs_goblins/tree/c34401a
|
||||
[patch.mobs_redo]: https://github.com/AntumDeluge/mtmod-mobs_redo/tree/d8edf22
|
||||
[patch.moreblocks]: https://github.com/AntumDeluge/mtmod-moreblocks/tree/abb2e49
|
||||
[patch.moreores]: https://github.com/AntumDeluge/mtmod-moreores/tree/51fbd4f
|
||||
|
|
|
@ -379,7 +379,7 @@ function mobs_goblins:register_mob(name, def)
|
|||
pos.y = pos.y + 1
|
||||
|
||||
-- water
|
||||
if self.water_damage ~= 0
|
||||
if self.water_damage ~= 0 and nodef ~= nil
|
||||
and nodef.groups.water then
|
||||
self.object:set_hp(self.object:get_hp() - self.water_damage)
|
||||
effect(pos, 5, "bubble.png")
|
||||
|
@ -387,7 +387,7 @@ function mobs_goblins:register_mob(name, def)
|
|||
end
|
||||
|
||||
-- lava or fire
|
||||
if self.lava_damage ~= 0
|
||||
if self.lava_damage ~= 0 and nodef ~= nil
|
||||
and (nodef.groups.lava or nod.name == "fire:basic_flame") then
|
||||
self.object:set_hp(self.object:get_hp() - self.lava_damage)
|
||||
effect(pos, 5, "fire_basic_flame.png")
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 182 B After Width: | Height: | Size: 182 B |
Binary file not shown.
Loading…
Reference in New Issue