Cleaning up from our deprecated permissions.

Also cleaned up the unholy mess that was SkillResetCommand.
This commit is contained in:
GJ
2013-01-31 13:29:42 -05:00
parent bd2cd07f46
commit d3c8a5565a
8 changed files with 97 additions and 153 deletions

View File

@ -301,7 +301,7 @@ public class SkillTools {
*/
public static SkillType getSkillType(String skillName) {
for (SkillType x : SkillType.values()) {
if (x.toString().equals(skillName.toUpperCase())) {
if (x.toString().equalsIgnoreCase(skillName)) {
return x;
}
}