Show individualized reserve bond drill count

This commit is contained in:
2026-07-09 14:00:19 +09:00
parent e86e9db17e
commit e03efe77db
2 changed files with 12 additions and 1 deletions

View File

@@ -9631,6 +9631,13 @@ function assertSortieTacticalRoster(state, requiredUnitIds) {
throw new Error(`Expected sortie preparation to expose deployment plan, reserve training, bond count, and terrain score: ${JSON.stringify(state.sortiePlan)}`);
}
if (
state.sortiePlan.reserveTrainingBondAssignmentCount > 0 &&
!state.sortiePlan.reserveTrainingPreviewLine.includes('공명')
) {
throw new Error(`Expected individualized bond drill count to be visible in reserve training preview: ${JSON.stringify(state.sortiePlan)}`);
}
if (
!state.sortieFocusedUnit ||
!state.sortieFocusedUnit.id ||