fix bug 武将名和职业名篡位

This commit is contained in:
luying
2020-10-20 17:51:43 +08:00
parent f618d6c36a
commit 2711fafd9f

View File

@@ -61,7 +61,7 @@ function parseJobData() {
const jobsData = gamedata['jsons'][jobFile] || [];
jobsData.forEach(elem => {
if (elem && elem.jobid) {
heroInfos.set(elem.jobid, elem);
jobInfos.set(elem.jobid, elem);
}
});
}