修复打点静态数据保存不完全的问题

dev_chengFeng
gaoxin 2020-07-26 18:37:31 +08:00
parent 6bfa7d318b
commit 1af2ee96f4
1 changed files with 4 additions and 0 deletions

View File

@ -34,6 +34,10 @@ namespace GameLogic
{ {
d.Add(kv[0], Convert.ToInt32(kv[1])); d.Add(kv[0], Convert.ToInt32(kv[1]));
} }
else
{
d.Add(kv[0], kv[1]);
}
} }
return d; return d;
} }