DataComponentType.ITEM_NAME should remove italics

This commit is contained in:
Camotoy 2024-06-21 13:53:38 -04:00
parent a12d60d27f
commit 21ccafc40c
No known key found for this signature in database
GPG key ID: 7EEFB66FE798081F

View file

@ -418,13 +418,15 @@ public final class ItemTranslator {
if (components != null) {
// ItemStack#getHoverName as of 1.20.5
Component customName = components.get(DataComponentType.CUSTOM_NAME);
if (customName == null) {
customName = components.get(DataComponentType.ITEM_NAME);
}
if (customName != null) {
// Get the translated name and prefix it with a reset char
return MessageTranslator.convertMessage(customName, session.locale());
}
customName = components.get(DataComponentType.ITEM_NAME);
if (customName != null) {
// Get the translated name and prefix it with a reset char to prevent italics - matches Java Edition
// behavior as of 1.21
return ChatColor.RESET + ChatColor.ESCAPE + translationColor + MessageTranslator.convertMessage(customName, session.locale());
}
}
if (mapping.hasTranslation()) {