Update Skill.java

Made it compilable, but getCurrentLevel() needs to be fixed (see comment in code)
This commit is contained in:
matt123337
2014-07-16 14:24:08 -04:00
parent ee2656cdd0
commit c0c2419005
+2 -1
View File
@@ -124,7 +124,8 @@ public enum Skill {
* Done by Bears * Done by Bears
*/ */
public static final int getCurrentLevel(int index) { public static final int getCurrentLevel(int index) {
return Loader.getClient().getCurrentStats()[index]; //return Loader.getClient().getCurrentStats()[index];
return getRealLevel(index); //TODO fix this method, it invokes a method not in the client accessor.
} }
/** /**