mirror of
https://github.com/BentoBoxWorld/Challenges.git
synced 2024-11-28 05:25:21 +01:00
Fixes enchanted book meta not displayed (#328)
Apparently in Spigot EnchantmentStorage has a map that is not used for enchantment storing. Nice. Fixes #327
This commit is contained in:
parent
a90d17d70d
commit
c351225e9a
@ -823,7 +823,7 @@ public class Utils
|
||||
|
||||
StringBuilder builder = new StringBuilder();
|
||||
|
||||
enchantmentMeta.getEnchants().forEach((enchantment, level) -> {
|
||||
enchantmentMeta.getStoredEnchants().forEach((enchantment, level) -> {
|
||||
builder.append("\n");
|
||||
builder.append(user.getTranslationOrNothing(Constants.ITEM_STACKS + "meta.enchant-meta",
|
||||
"[type]", prettifyObject(enchantment, user),
|
||||
|
Loading…
Reference in New Issue
Block a user