Javadocs cleanup

This commit is contained in:
TfT_02
2013-08-10 20:10:45 +02:00
parent 4ff6b5fbc7
commit 90fcf35c34
20 changed files with 33 additions and 34 deletions

View File

@ -57,7 +57,8 @@ public class Taming {
/**
* Apply the Sharpened Claws ability.
*
* @param event The event to modify
* @param damage The initial damage
* @return Damage with SharpenedClaws bonus damage
*/
public static double sharpenedClaws(double damage) {
return damage + Taming.sharpenedClawsBonusDamage;

View File

@ -61,7 +61,7 @@ public class TamingManager extends SkillManager {
/**
* Award XP for taming.
*
* @param event The event to award XP for
* @param entity The LivingEntity to award XP for
*/
public void awardTamingXP(LivingEntity entity) {
switch (entity.getType()) {
@ -100,7 +100,8 @@ public class TamingManager extends SkillManager {
/**
* Apply the Gore ability.
*
* @param event The event to modify
* @param target The LivingEntity to apply Gore on
* @param damage The initial damage
*/
public double gore(LivingEntity target, double damage) {
if (SkillUtils.activationSuccessful(getSkillLevel(), getActivationChance(), Taming.goreMaxChance, Taming.goreMaxBonusLevel)) {