3
0
Mirror von https://github.com/ViaVersion/ViaBackwards.git synchronisiert 2024-10-08 03:00:07 +02:00

fix missing metadata index check

Dieser Commit ist enthalten in:
Gerrygames 2019-05-21 22:28:28 +02:00
Ursprung a9ee4ae88b
Commit 114dbedfb7

Datei anzeigen

@ -349,7 +349,7 @@ public class EntityPackets1_14 extends EntityRewriter<Protocol1_13_2To1_14> {
if (index == 14) {
//TODO handle
throw new RemovedValueException();
} else {
} else if (index > 14) {
meta.setId(index - 1);
}
}