Commit c424d15b authored by Melledy's avatar Melledy
Browse files

Remove previous fix for falling to death in godmode

This fix is more efficient
parent a601e13d
......@@ -105,10 +105,6 @@ public class HandlerCombatInvocationsNotify extends PacketHandler {
if (cachedLandingSpeed < -28) {
damageFactor = 1f;
}
// Disable falling damage for players in god mode.
if (session.getPlayer() != null && session.getPlayer().inGodmode()) {
damageFactor = 0;
}
float damage = maxHP * damageFactor;
float newHP = currentHP - damage;
if (newHP < 0) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment