diff --git a/Source/GrasscutterTools/Game/TextMapData.cs b/Source/GrasscutterTools/Game/TextMapData.cs index 997c0fe..5bcce83 100644 --- a/Source/GrasscutterTools/Game/TextMapData.cs +++ b/Source/GrasscutterTools/Game/TextMapData.cs @@ -46,7 +46,7 @@ namespace GrasscutterTools.Game ManualTextMap = new Dictionary(); while (reader.Read()) { - if (reader.TokenType == JsonToken.PropertyName && (string)reader.Value == "TextMapId") + if (reader.TokenType == JsonToken.PropertyName && ((string)reader.Value == "TextMapId" || (string)reader.Value == "textMapId")) { var textMapId = reader.ReadAsString(); reader.Read();