diff --git a/src/game/scenes/CampScene.ts b/src/game/scenes/CampScene.ts index bf0d843..7e25fd8 100644 --- a/src/game/scenes/CampScene.ts +++ b/src/game/scenes/CampScene.ts @@ -13756,7 +13756,7 @@ export class CampScene extends Phaser.Scene { const focusLabel = nextFocusId ? campaignReserveTrainingFocusDefinitions.find((focus) => focus.id === nextFocusId)?.label ?? '' : this.reserveTrainingFocusDefinition().label; - this.showCampNotice(`${focusedReserveUnit.name} 개별 훈련 · ${focusLabel}`); + this.showCampNotice(`${focusedReserveUnit.name} ${nextFocusId ? '개별 훈련' : '기본 훈련'} · ${focusLabel}`); soundDirector.playSelect(); this.showSortiePrep(); }