-
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Hello, nice job :D But you need a parser for the int64 nodes too.
namespace SheepReaper.GameSaves.Klei.TypeParsers
{
public class Integer64Parser : IParser
{
public long Parse(IDataReader reader, TypeInfo info, List templates) => reader.ReadInt64();
object IParser.Parse(IDataReader reader, TypeInfo info, List<Template> templates) => Parse(reader, info, templates);
}
}
In public class DataReader : BufferBinaryReader, IDataReader
....
[SerializationTypeCode.Int64] = new Integer64Parser(),
Some maps have a 64bit value in it. These maps can't be loaded
Metadata
Metadata
Assignees
Labels
No labels