diff --git a/fabric/src/main/java/com/noxcrew/noxesium/network/clientbound/ClientboundMccServerPacket.java b/fabric/src/main/java/com/noxcrew/noxesium/network/clientbound/ClientboundMccServerPacket.java index 39cc68ac..6153a509 100644 --- a/fabric/src/main/java/com/noxcrew/noxesium/network/clientbound/ClientboundMccServerPacket.java +++ b/fabric/src/main/java/com/noxcrew/noxesium/network/clientbound/ClientboundMccServerPacket.java @@ -15,11 +15,19 @@ public class ClientboundMccServerPacket extends ClientboundNoxesiumPacket { public final String subType; public final String associatedGame; + /** + * The legacy id of this game, these are only used by the event and mcc.live. + * These are provided for completeness and comparison, but you should generally use + * the regular associatedGame value on Island. + */ + public final String legacyGameId; + public ClientboundMccServerPacket(FriendlyByteBuf buf) { super(buf.readVarInt()); this.type = buf.readUtf(); this.subType = buf.readUtf(); this.associatedGame = buf.readUtf(); + this.legacyGameId = buf.readUtf(); } @Override