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
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();
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();
}
In public class DataReader : BufferBinaryReader, IDataReader
....
[SerializationTypeCode.Int64] = new Integer64Parser(),
Some maps have a 64bit value in it. These maps can't be loaded
The text was updated successfully, but these errors were encountered: