Fixed MSVC warning.
This commit is contained in:
parent
9a4e8bf83f
commit
f22f67a63c
@ -114,8 +114,8 @@ void cArrowEntity::OnHitEntity(cEntity & a_EntityHit, const Vector3d & a_HitPos)
|
|||||||
int PowerLevel = m_CreatorData.m_Enchantments.GetLevel(cEnchantments::enchPower);
|
int PowerLevel = m_CreatorData.m_Enchantments.GetLevel(cEnchantments::enchPower);
|
||||||
if (PowerLevel > 0)
|
if (PowerLevel > 0)
|
||||||
{
|
{
|
||||||
int ExtraDamage = 0.25 * (PowerLevel + 1);
|
int ExtraDamage = (int)ceil(0.25 * (PowerLevel + 1));
|
||||||
Damage += ceil(ExtraDamage);
|
Damage += ExtraDamage;
|
||||||
}
|
}
|
||||||
|
|
||||||
int KnockbackAmount = 1;
|
int KnockbackAmount = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user