mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-11-04 11:03:43 +01:00 
			
		
		
		
	Prevent breaking other plugins who use this API
This commit is contained in:
		@@ -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>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user