mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-29 05:26:23 +01:00
Ignore NBT with hanging comma, fixes #2319
This commit is contained in:
parent
628979f923
commit
d39193400f
@ -303,6 +303,10 @@ import java.util.stream.IntStream;
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
this.buffer.expect(Tokens.VALUE_SEPARATOR);
|
this.buffer.expect(Tokens.VALUE_SEPARATOR);
|
||||||
|
if (this.buffer.skipWhitespace().peek() == endCharacter) {
|
||||||
|
this.buffer.take();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user