Move UtfEnumerator from Dalamud to Lumina (#2111)

* Move UtfEnumerator from Dalamud to Lumina

Comes with some trivial cleanups.

* Update Lumina to 5.5.0
This commit is contained in:
srkizer 2024-11-21 02:32:49 +09:00 committed by GitHub
parent 6d664cc606
commit d19b7d70d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 63 additions and 1103 deletions

View file

@ -133,9 +133,7 @@ public class SeString
{
while (stream.Position < len)
{
var payload = Payload.Decode(reader);
if (payload != null)
payloads.Add(payload);
payloads.Add(Payload.Decode(reader));
}
}