From fb1a332f2c40eed759bc231c5eb7e4dc75bc356f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AD=B1=E5=82=91?= Date: Wed, 27 Jul 2022 20:38:48 +0800 Subject: [PATCH] Fix textMapId field changed issue --- Source/GrasscutterTools/Game/TextMapData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();