Expose reserve drill plan lines in debug

This commit is contained in:
2026-07-09 14:08:50 +09:00
parent eea32a7075
commit 766dd1bee5
2 changed files with 6 additions and 1 deletions

View File

@@ -9596,7 +9596,8 @@ function assertSortieTacticalRoster(state, requiredUnitIds) {
typeof unit.reserveTrainingAssigned !== 'boolean' ||
!unit.reserveTrainingFocusId ||
!unit.reserveTrainingFocusLabel ||
typeof unit.reserveTrainingBondPreviewLine !== 'string'
typeof unit.reserveTrainingBondPreviewLine !== 'string' ||
typeof unit.reserveTrainingPlanLine !== 'string'
);
});
@@ -9650,6 +9651,7 @@ function assertSortieTacticalRoster(state, requiredUnitIds) {
!state.sortieFocusedUnit.reserveTrainingFocusId ||
!state.sortieFocusedUnit.reserveTrainingFocusLabel ||
typeof state.sortieFocusedUnit.reserveTrainingBondPreviewLine !== 'string' ||
typeof state.sortieFocusedUnit.reserveTrainingPlanLine !== 'string' ||
typeof state.sortieFocusedUnit.terrainScore !== 'number' ||
!state.sortieFocusedUnit.terrainGrade ||
!Array.isArray(state.sortieFocusedUnit.equipment) ||