You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 10, 2025. It is now read-only.
Attempting to parse an integer array fails with a SyntaxError if the array contains a negative number.
This effectively means that any SNBT containing a UUID fails as those are length 4 Integer Arrays and UUID format guarantees a negative number here.
A simple check to confirm:
StringNbt.Parse("{uuid:[I; 0, 0, 0, -1]}");
throws
System.Data.SyntaxErrorException: 'Syntax error at index 19: Invalid character '-' in integer array.'