mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
Implement getI18NDisplayName
Gets the Display name as seen in the Client. Currently the server only supports the English language. To override this, You must replace the language file embedded in the server jar.
This commit is contained in:
parent
11a5eaf367
commit
07e40cd7d4
1 changed files with 15 additions and 0 deletions
|
@ -236,4 +236,19 @@ public final class CraftItemFactory implements ItemFactory {
|
|||
return CraftItemStack.asCraftMirror(CraftItemStack.asNMSCopy(item));
|
||||
}
|
||||
// Paper end - ensure server conversions API
|
||||
|
||||
// Paper start - add getI18NDisplayName
|
||||
@Override
|
||||
public String getI18NDisplayName(ItemStack item) {
|
||||
net.minecraft.world.item.ItemStack nms = null;
|
||||
if (item instanceof CraftItemStack) {
|
||||
nms = ((CraftItemStack) item).handle;
|
||||
}
|
||||
if (nms == null) {
|
||||
nms = CraftItemStack.asNMSCopy(item);
|
||||
}
|
||||
|
||||
return nms != null ? nms.getItem().getName(nms).getString() : null;
|
||||
}
|
||||
// Paper end - add getI18NDisplayName
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue