This commit is contained in:
mamengke01
2020-12-22 17:25:55 +08:00
parent eec53b688f
commit 9a377e94d8
18 changed files with 218 additions and 115 deletions
+1 -1
View File
@@ -466,7 +466,7 @@ export function readWarJsonFileList() {
// 字典表常用解析方法
// 解析物品 {"id": number, "count": number} 格式
export function parseReward(str: string) {
export function parseGoodStr(str: string) {
let result = new Array<{id: number, count: number}>();
if(!str) return result;
let decodeArr = decodeArrayListStr(str);