fix: GetNationInfo에는 nationNotice가 필요하지 않음

This commit is contained in:
2023-03-09 02:20:21 +09:00
parent 230a7d888c
commit 5fde900554
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -99,7 +99,6 @@ class GetNationInfo extends \sammo\BaseAPI
'isFull' => $isFull,
'nation' => $nation,
'impossibleStrategicCommandLists' => $impossibleStrategicCommandLists,
'nationNotice' => $nationStor->nationNotice,
'troops' => $troopName,
];
-1
View File
@@ -154,7 +154,6 @@ export type NationInfoFull = ValidResponse & {
nation: NationItem;
isFull: true,
impossibleStrategicCommandLists: [string, number][];
nationNotice: NationNotice,
troops: Record<number, string>;
}