Give ProgressiveKits the ability to not use xp or use crowns instead of gems for leveling

This commit is contained in:
AlexTheCoder 2017-05-04 18:30:39 -04:00
parent 6ffd10133e
commit 39f997faf1
1 changed files with 10 additions and 0 deletions

View File

@ -285,4 +285,14 @@ public interface ProgressiveKit
ViewDist.NORMAL, displayTo);
}
}
default boolean usesXp()
{
return true;
}
default boolean crownsEnabled()
{
return false;
}
}