fix,refac: Nation/GetGeneralList에서 부대정보는 공개되어야 함

This commit is contained in:
2022-07-17 01:37:07 +09:00
parent 020a2d2668
commit ed0bc5e19f
3 changed files with 20 additions and 13 deletions
+2 -2
View File
@@ -83,8 +83,8 @@ async function reload() {
return { permission, st0: true, st1: true, st2: true, ...v };
});
for (const [troopLeader, troopName] of troops) {
troopList.value[troopLeader] = troopName;
for (const {id: troopID, name:troopName} of troops) {
troopList.value[troopID] = troopName;
}
} else {
throw `?? ${permission}`;