1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-27 18:59:17 +00:00

Fix potential NPE

This commit is contained in:
AJ Ferguson
2024-04-30 18:05:46 -04:00
parent 255835438d
commit aff7d2cf35

View File

@@ -85,7 +85,7 @@ public class AnvilContainer extends Container {
session.sendDownstreamGamePacket(renameItemPacket);
} else {
// Restore formatting for item since we're not renaming
correctRename = MessageTranslator.convertMessage(originalName, session.locale());
correctRename = originalName != null ? MessageTranslator.convertMessage(originalName, session.locale()) : "";
// Java Edition sends the original custom name when not renaming,
// if there isn't a custom name an empty string is sent
ServerboundRenameItemPacket renameItemPacket = new ServerboundRenameItemPacket(plainOriginalName);