Browse Source

Prevent breaking other plugins who use this API

TfT_02 11 years ago
parent
commit
c72ead9d0a
1 changed files with 10 additions and 0 deletions
  1. 10 0
      src/main/java/com/gmail/nossr50/api/ExperienceAPI.java

+ 10 - 0
src/main/java/com/gmail/nossr50/api/ExperienceAPI.java

@@ -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>