mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Make titles update on levelup
This commit is contained in:
parent
378de09ccd
commit
a1283bfc0f
@ -11,6 +11,7 @@ Version 1.3.05-dev
|
||||
+ Added bonus damage to Archery, every 50 levels you gain 10% bonus damage
|
||||
+ Added ExperienceAPI and PartyAPI classes for developer use
|
||||
+ Added ability to cap overall power level
|
||||
+ Added showing powerlevel below a persons name if you run Spout (optional)
|
||||
= Fixed errors when Spout would disable itself after start-up
|
||||
= Fixed XP bar not updating when XP was gained
|
||||
= Fixed bug with repairing wooden tools
|
||||
|
@ -33,7 +33,7 @@ public class mcSpoutListener implements Listener {
|
||||
|
||||
//TODO: Add custom titles based on skills
|
||||
if (LoadProperties.showPowerLevel) {
|
||||
sPlayer.setTitle(sPlayer.getTitle() + "\n" + ChatColor.YELLOW + "P" + ChatColor.GOLD + "lvl"
|
||||
sPlayer.setTitle(sPlayer.getName()+ "\n" + ChatColor.YELLOW + "P" + ChatColor.GOLD + "lvl"
|
||||
+ ChatColor.WHITE+"." + ChatColor.GREEN + String.valueOf(PPs.getPowerLevel()));
|
||||
}
|
||||
|
||||
|
@ -224,6 +224,12 @@ public class Skills {
|
||||
}
|
||||
|
||||
SpoutStuff.levelUpNotification(skillType, sPlayer);
|
||||
|
||||
/* Update custom titles */
|
||||
if(LoadProperties.showPowerLevel) {
|
||||
sPlayer.setTitle(sPlayer.getName()+ "\n" + ChatColor.YELLOW + "P" + ChatColor.GOLD + "lvl"
|
||||
+ ChatColor.WHITE+"." + ChatColor.GREEN + String.valueOf(PP.getPowerLevel()));
|
||||
}
|
||||
}
|
||||
else {
|
||||
player.sendMessage(mcLocale.getString("Skills."+capitalized+"Up", new Object[] {String.valueOf(skillups), PP.getSkillLevel(skillType)}));
|
||||
|
Loading…
Reference in New Issue
Block a user