Rewrote how SkillRanks were pulled for the new config system

This commit is contained in:
nossr50
2019-06-04 13:11:45 -07:00
parent b62bd0e620
commit cf6a4c804a
10 changed files with 164 additions and 65 deletions

View File

@@ -0,0 +1,7 @@
package com.gmail.nossr50.api.exceptions;
public class MissingSkillPropertyDefinition extends RuntimeException {
public MissingSkillPropertyDefinition(String details) {
super("A skill property is undefined! Details: " + details);
}
}