Prevent breaking other plugins who use this API

This commit is contained in:
TfT_02 2013-09-30 19:03:44 +02:00
parent 4262a1b2a5
commit c72ead9d0a

View File

@ -48,6 +48,11 @@ public final class ExperienceAPI {
return !skill.isChildSkill();
}
@Deprecated
public static void addRawXP(Player player, String skillType, int XP) {
addRawXP(player, skillType, XP);
}
/**
* Adds raw XP to the player.
* </br>
@ -63,6 +68,11 @@ public final class ExperienceAPI {
UserManager.getPlayer(player).applyXpGain(getSkillType(skillType), XP);
}
@Deprecated
public static void addRawXPOffline(String playerName, String skillType, int XP) {
addRawXPOffline(playerName, skillType, XP);
}
/**
* Adds raw XP to an offline player.
* </br>