net.minestom.server.network.packet.client.play.ClientNameItemPacket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minestom-snapshots Show documentation
Show all versions of minestom-snapshots Show documentation
1.20.4 Lightweight Minecraft server
package net.minestom.server.network.packet.client.play;
import net.minestom.server.network.NetworkBuffer;
import net.minestom.server.network.NetworkBufferTemplate;
import net.minestom.server.network.packet.client.ClientPacket;
import org.jetbrains.annotations.NotNull;
import static net.minestom.server.network.NetworkBuffer.STRING;
public record ClientNameItemPacket(@NotNull String itemName) implements ClientPacket {
public static final NetworkBuffer.Type SERIALIZER = NetworkBufferTemplate.template(
STRING, ClientNameItemPacket::itemName,
ClientNameItemPacket::new);
public ClientNameItemPacket {
if (itemName.length() > Short.MAX_VALUE) {
throw new IllegalArgumentException("ItemStack name cannot be longer than Short.MAX_VALUE characters!");
}
}
}