Fix Javadocs issues

This commit is contained in:
TfT_02
2013-08-23 17:21:56 +02:00
parent 6bfc1b84de
commit 9c54f8fd11
5 changed files with 25 additions and 10 deletions

View File

@ -96,6 +96,12 @@ public class UnarmedManager extends SkillManager {
return false;
}
/**
* Handle the effects of the Berserk ability
*
* @param target The {@link LivingEntity} being affected by the ability
* @param damage The amount of damage initially dealt by the event
*/
public void berserkDamage(LivingEntity target, double damage) {
damage = (damage * Unarmed.berserkDamageModifier) - damage;
@ -105,8 +111,7 @@ public class UnarmedManager extends SkillManager {
/**
* Handle the effects of the Iron Arm ability
*
* @param damage The amount of damage initially dealt by the event
* @return the modified event damage
* @param target The {@link LivingEntity} being affected by the ability
*/
public void ironArm(LivingEntity target) {
int unarmedBonus = Math.min(Unarmed.ironArmMinBonusDamage + (getSkillLevel() / Unarmed.ironArmIncreaseLevel), Unarmed.ironArmMaxBonusDamage);