From 3fe936306b1ac36b7fee65e15c1911c01497c21d Mon Sep 17 00:00:00 2001 From: GJ Date: Mon, 28 Oct 2013 15:19:47 -0400 Subject: [PATCH] Oops. --- .../java/com/gmail/nossr50/datatypes/player/PlayerProfile.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java b/src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java index 9c21430b1..a27c1d9db 100644 --- a/src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java +++ b/src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java @@ -151,7 +151,7 @@ public class PlayerProfile { * Xp Functions */ - protected int getSkillLevel(SkillType skillType) { + public int getSkillLevel(SkillType skillType) { return skillType.isChildSkill() ? getChildSkillLevel(skillType) : skills.get(skillType); }