mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
changelog adjustments
This commit is contained in:
parent
68c7de16a8
commit
e63ce103a2
@ -1,13 +1,14 @@
|
|||||||
Version 2.1.174
|
Version 2.1.174
|
||||||
Some legacy color codes in our locale file were swapped to &-code equivalents (thanks ViaSnake)
|
Some legacy color codes in our locale file were swapped to &-code equivalents (thanks ViaSnake)
|
||||||
Updated hu_HU locale (thanks andris155)
|
Updated hu_HU locale (thanks andris155)
|
||||||
|
|
||||||
Version 2.1.173
|
Version 2.1.173
|
||||||
The experience orbs dropped by Knock on Wood rank 2 during Tree Feller are now much less frequent but provide more XP
|
The experience orbs dropped by Knock on Wood rank 2 during Tree Feller are now much less frequent but provide more XP
|
||||||
mcMMO no longer damages fishing rods or drains a player's hunger when fishing
|
mcMMO no longer damages fishing rods or drains a player's hunger when fishing
|
||||||
Fixed a visual bug where players who had lucky perk were shown incorrect odds when using skill commands (such as /axes)
|
Fixed a visual bug where players who had lucky perk were shown incorrect odds when using skill commands (such as /axes)
|
||||||
Updated ja_JP locale (thanks ViaSnake)
|
Updated ja_JP locale (thanks ViaSnake)
|
||||||
Fixed a bug where scoreboards were torn down inappropriately when moving to or from blacklisted worlds (thanks steve4744)
|
Fixed a bug where scoreboards were torn down inappropriately when moving to or from blacklisted worlds (thanks steve4744)
|
||||||
Updated kyori's adventure library to 4.4.0 (used by mcMMO to handle text components)
|
Updated Kyori's adventure library to 4.4.0 (used by mcMMO to handle text components)
|
||||||
|
|
||||||
Version 2.1.172
|
Version 2.1.172
|
||||||
Updated german locale (thanks TheBusyBiscuit)
|
Updated german locale (thanks TheBusyBiscuit)
|
||||||
|
@ -297,7 +297,7 @@ public class NotificationManager {
|
|||||||
String localeMessage = LocaleLoader.getString("Broadcasts.LevelUpMilestone", mmoPlayer.getPlayer().getDisplayName(), level, primarySkillType.getName());
|
String localeMessage = LocaleLoader.getString("Broadcasts.LevelUpMilestone", mmoPlayer.getPlayer().getDisplayName(), level, primarySkillType.getName());
|
||||||
Component message = Component.text(localeMessage).hoverEvent(levelMilestoneHover);
|
Component message = Component.text(localeMessage).hoverEvent(levelMilestoneHover);
|
||||||
|
|
||||||
Bukkit.getScheduler().runTaskLater(mcMMO.p, () -> {audience.sendMessage(Identity.nil(), message);}, 0);
|
Bukkit.getScheduler().runTaskLater(mcMMO.p, () -> audience.sendMessage(Identity.nil(), message), 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -332,7 +332,7 @@ public class NotificationManager {
|
|||||||
String localeMessage = LocaleLoader.getString("Broadcasts.PowerLevelUpMilestone", mmoPlayer.getPlayer().getDisplayName(), powerLevel);
|
String localeMessage = LocaleLoader.getString("Broadcasts.PowerLevelUpMilestone", mmoPlayer.getPlayer().getDisplayName(), powerLevel);
|
||||||
Component message = Component.text(localeMessage).hoverEvent(levelMilestoneHover);
|
Component message = Component.text(localeMessage).hoverEvent(levelMilestoneHover);
|
||||||
|
|
||||||
Bukkit.getScheduler().runTaskLater(mcMMO.p, () -> {audience.sendMessage(Identity.nil(), message);}, 0);
|
Bukkit.getScheduler().runTaskLater(mcMMO.p, () -> audience.sendMessage(Identity.nil(), message), 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user