forked from mtcontrib/mobs_monster
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
7893b94f6e
@ -309,12 +309,11 @@ mobs:register_arrow("mobs_monster:obsidian_arrow", {
|
|||||||
end
|
end
|
||||||
|
|
||||||
local texture = "default_dirt.png" --fallback texture
|
local texture = "default_dirt.png" --fallback texture
|
||||||
|
|
||||||
local radius = 1
|
local radius = 1
|
||||||
local def = minetest.registered_nodes[node]
|
local def = node and minetest.registered_nodes[node.name]
|
||||||
|
|
||||||
if def then
|
if not def then
|
||||||
node = {name = node}
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
if def and def.tiles and def.tiles[1] then
|
if def and def.tiles and def.tiles[1] then
|
||||||
@ -350,6 +349,6 @@ mobs:register_arrow("mobs_monster:obsidian_arrow", {
|
|||||||
|
|
||||||
local snd = def.sounds and def.sounds.dug or "default_dig_crumbly"
|
local snd = def.sounds and def.sounds.dug or "default_dig_crumbly"
|
||||||
|
|
||||||
minetest.sound_play(snd, {pos = pos, max_hear_distance = 12, gain = 1.0}, true)
|
minetest.sound_play(snd, {pos = pos, max_hear_distance = 8, gain = 1.0}, true)
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
@ -204,7 +204,9 @@ mobs:register_mob("mobs_monster:spider", {
|
|||||||
-- move up facing
|
-- move up facing
|
||||||
v.x = 0 ; v.y = 0
|
v.x = 0 ; v.y = 0
|
||||||
v.y = self.jump_height
|
v.y = self.jump_height
|
||||||
mobs:set_animation(self, "jump")
|
|
||||||
|
self:set_animation("jump")
|
||||||
|
|
||||||
self.object:set_velocity(v)
|
self.object:set_velocity(v)
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user