diff options
Diffstat (limited to 'src/Entities/Entity.cpp')
-rw-r--r-- | src/Entities/Entity.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Entities/Entity.cpp b/src/Entities/Entity.cpp index 4c84df1f4..9f2d39de4 100644 --- a/src/Entities/Entity.cpp +++ b/src/Entities/Entity.cpp @@ -513,7 +513,7 @@ bool cEntity::DoTakeDamage(TakeDamageInfo & a_TDI) RemovedDamage += CeilC(EPFProtection * 0.04 * a_TDI.FinalDamage); } - if ((a_TDI.DamageType == dtFalling) || (a_TDI.DamageType == dtFall) || (a_TDI.DamageType == dtEnderPearl)) + if ((a_TDI.DamageType == dtFalling) || (a_TDI.DamageType == dtEnderPearl)) { RemovedDamage += CeilC(EPFFeatherFalling * 0.04 * a_TDI.FinalDamage); } |