From b110ecaa603a9671218b405565e0313656c6910a Mon Sep 17 00:00:00 2001 From: Wickedness Date: Thu, 9 Jul 2026 13:53:31 +0900 Subject: [PATCH] Clarify reserve drill reset notice --- src/game/scenes/CampScene.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }