Expose missing recommended classes

This commit is contained in:
2026-07-09 14:14:04 +09:00
parent e3a09496be
commit d87bf51c0c
2 changed files with 3 additions and 0 deletions

View File

@@ -278,6 +278,7 @@ type SortiePlanSummary = {
recommendedTotal: number;
recommendedClassSelectedCount: number;
recommendedClassTotal: number;
recommendedClassMissingLabels: string[];
deploymentLine: string;
recommendationLine: string;
recruitedLine: string;
@@ -13424,6 +13425,7 @@ export class CampScene extends Phaser.Scene {
recommendedTotal: recommended.length,
recommendedClassSelectedCount,
recommendedClassTotal: recommendedClasses.length,
recommendedClassMissingLabels: missingClassRecommendations.map((entry) => entry.label),
deploymentLine: roleLine,
recommendationLine: recommended.length > 0
? `추천 무장 ${recommendedSelectedCount}/${recommended.length} · 병종 ${recommendedClassCoverageLine}`