3
0
Mirror von https://github.com/Moulberry/AxiomPaperPlugin.git synchronisiert 2024-09-29 16:00:04 +02:00

Fix protocol read issue when line_thickness is present while line_argb is not

Dieser Commit ist enthalten in:
Moulberry 2024-02-17 04:38:47 +08:00
Ursprung d0cc7281cf
Commit b4757985de

Datei anzeigen

@ -75,7 +75,7 @@ public record MarkerData(UUID uuid, Vec3 position, @Nullable String name, @Nulla
friendlyByteBuf.writeInt(markerData.lineArgb);
}
if (markerData.lineArgb != 0) {
if (markerData.lineThickness != 0) {
friendlyByteBuf.writeFloat(markerData.lineThickness);
}