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

Ignore NBT with hanging comma, fixes #2319

Dieser Commit ist enthalten in:
Myles 2021-02-09 10:50:11 +00:00
Ursprung 628979f923
Commit d39193400f

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;
}