forked from VoxeLibre/VoxeLibre
Buff punch enchantment knockback range in bows to be similar to MC
This commit is contained in:
parent
e0bd5e7f33
commit
401c05d696
|
@ -48,7 +48,7 @@ function mcl_bows.shoot_arrow(arrow_item, pos, dir, yaw, shooter, power, damage,
|
||||||
damage = damage + (enchantments.power + 1) / 4
|
damage = damage + (enchantments.power + 1) / 4
|
||||||
end
|
end
|
||||||
if enchantments.punch then
|
if enchantments.punch then
|
||||||
knockback = enchantments.punch * 3
|
knockback = enchantments.punch * 21
|
||||||
end
|
end
|
||||||
if enchantments.flame then
|
if enchantments.flame then
|
||||||
mcl_burning.set_on_fire(obj, math.huge)
|
mcl_burning.set_on_fire(obj, math.huge)
|
||||||
|
|
Loading…
Reference in New Issue