Fixed FakeEntityDamageByEntityEvent not getting fired

This commit is contained in:
TfT_02
2013-08-23 15:09:42 +02:00
parent 23983422e0
commit 59f545d5ce
3 changed files with 10 additions and 19 deletions

View File

@ -54,16 +54,6 @@ public class Taming {
return damage / shockProofModifier;
}
/**
* Apply the Sharpened Claws ability.
*
* @param damage The initial damage
* @return Damage with SharpenedClaws bonus damage
*/
public static double sharpenedClaws(double damage) {
return damage + Taming.sharpenedClawsBonusDamage;
}
public static void processHolyHound(Wolf wolf, double damage) {
double modifiedHealth = Math.min(wolf.getHealth() + damage, wolf.getMaxHealth());