forked from VoxeLibre/VoxeLibre
Exhaust player for being hit by mob projectile
This commit is contained in:
parent
c1ad39febd
commit
6083c4895d
|
@ -82,6 +82,7 @@ mobs:register_arrow("mobs_mc:blaze_fireball", {
|
|||
full_punch_interval = 1.0,
|
||||
damage_groups = {fleshy = 5},
|
||||
}, nil)
|
||||
mcl_hunger.exhaust(player:get_player_name(), mcl_hunger.EXHAUST_DAMAGE)
|
||||
end,
|
||||
|
||||
hit_mob = function(self, player)
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
mcl_core
|
||||
mcl_tools
|
||||
mcl_hunger
|
||||
mcl_fire
|
||||
mobs
|
||||
mcl_tnt
|
||||
|
|
|
@ -95,6 +95,7 @@ mobs:register_arrow("mobs_mc:ghast_fireball", {
|
|||
full_punch_interval = 1.0,
|
||||
damage_groups = {fleshy = 6},
|
||||
}, nil)
|
||||
mcl_hunger.exhaust(player:get_player_name(), mcl_hunger.EXHAUST_DAMAGE)
|
||||
end,
|
||||
|
||||
hit_mob = function(self, player)
|
||||
|
|
Loading…
Reference in New Issue