forked from MagicBane/Server
Class cleanup. Formatting, squiggles and unused code/variables.
This commit is contained in:
@@ -750,7 +750,7 @@ public enum CombatManager {
|
||||
|
||||
//Handle Dodge passive
|
||||
|
||||
if (!passiveFired) {
|
||||
if (!passiveFired)
|
||||
if (testPassive(ac, tarAc, "Dodge")) {
|
||||
|
||||
if (!target.isAlive())
|
||||
@@ -759,7 +759,6 @@ public enum CombatManager {
|
||||
sendPassiveDefenseMessage(ac, wb, target, MBServerStatics.COMBAT_SEND_DODGE, dpj, mainHand);
|
||||
passiveFired = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//return if passive (Block, Parry, Dodge) fired
|
||||
@@ -981,10 +980,8 @@ public enum CombatManager {
|
||||
if (acItem == null || tarItem == null)
|
||||
return false;
|
||||
|
||||
|
||||
Item tarOff = tarItem.getItemFromEquipped(2);
|
||||
|
||||
|
||||
if (tarOff == null)
|
||||
return false;
|
||||
|
||||
@@ -1006,7 +1003,6 @@ public enum CombatManager {
|
||||
|
||||
return ib.getRange() > MBServerStatics.RANGED_WEAPON_RANGE;
|
||||
|
||||
|
||||
}
|
||||
|
||||
private static float calculateDamage(AbstractCharacter source, AbstractCharacter target, float minDamage, float maxDamage, DamageType damageType, Resists resists) {
|
||||
|
||||
Reference in New Issue
Block a user