mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-11-22 14:56:25 +01:00
ensure geyser builds
This commit is contained in:
parent
48164e93c7
commit
c5e02d28e6
1 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,6 @@ import com.github.steveice10.mc.protocol.data.game.inventory.ContainerType;
|
|||
import com.github.steveice10.mc.protocol.packet.ingame.serverbound.inventory.ServerboundRenameItemPacket;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import net.kyori.adventure.text.Component;
|
||||
import org.checkerframework.checker.nullness.qual.Nullable;
|
||||
import org.geysermc.geyser.session.GeyserSession;
|
||||
import org.geysermc.geyser.translator.text.MessageTranslator;
|
||||
|
@ -73,7 +72,8 @@ public class AnvilContainer extends Container {
|
|||
String correctRename;
|
||||
newName = rename;
|
||||
|
||||
Component originalName = ItemUtils.getCustomName(getInput().getComponents());
|
||||
// TODO 1.20.5 fix properly - this name is apparently nullable??
|
||||
String originalName = MessageTranslator.convertMessage(ItemUtils.getCustomName(getInput().getComponents()));
|
||||
|
||||
String plainOriginalName = MessageTranslator.convertToPlainTextLenient(originalName, session.locale());
|
||||
String plainNewName = MessageTranslator.convertToPlainText(rename);
|
||||
|
|
Loading…
Reference in a new issue