Expose reserve bond drill assignment count

This commit is contained in:
2026-07-09 13:59:15 +09:00
parent f1530bcd8f
commit e86e9db17e
2 changed files with 7 additions and 1 deletions

View File

@@ -9625,7 +9625,8 @@ function assertSortieTacticalRoster(state, requiredUnitIds) {
typeof state.sortiePlan.recommendedTotal !== 'number' ||
typeof state.sortiePlan.reserveTrainingExpPreview !== 'number' ||
typeof state.sortiePlan.reserveTrainingEquipmentPreview !== 'number' ||
typeof state.sortiePlan.reserveTrainingBondPreview !== 'number'
typeof state.sortiePlan.reserveTrainingBondPreview !== 'number' ||
typeof state.sortiePlan.reserveTrainingBondAssignmentCount !== 'number'
) {
throw new Error(`Expected sortie preparation to expose deployment plan, reserve training, bond count, and terrain score: ${JSON.stringify(state.sortiePlan)}`);
}