Child Skills will not trigger XP bars (for now)

This commit is contained in:
nossr50
2019-01-18 17:21:05 -08:00
parent e74bc9fd95
commit df8f050cf1
5 changed files with 18 additions and 6 deletions

View File

@ -55,6 +55,10 @@ public class ExperienceBarWrapper {
}
private String getTitleTemplate() {
//If they are using extra details
if(ExperienceConfig.getInstance().getAddExtraDetails())
return LocaleLoader.getString("XPBar.Complex.Template", LocaleLoader.getString("XPBar."+niceSkillName, getLevel()), getCurrentXP(), getMaxXP(), getPowerLevel(), getPercentageOfLevel());
return LocaleLoader.getString("XPBar."+niceSkillName, getLevel(), getCurrentXP(), getMaxXP(), getPowerLevel(), getPercentageOfLevel());
}