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

Ignore NBT with hanging comma, fixes #2319

Dieser Commit ist enthalten in:
Myles 2021-02-09 10:54:04 +00:00
Ursprung 24b4cd8dbd
Commit f04a748e54

Datei anzeigen

@ -303,6 +303,10 @@ import java.util.stream.IntStream;
return true;
}
this.buffer.expect(Tokens.VALUE_SEPARATOR);
if (this.buffer.skipWhitespace().peek() == endCharacter) {
this.buffer.take();
return true;
}
return false;
}