From 65194750e9d8394da4dcd7a189f5a6c3ce286b89 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sat, 24 Jan 2026 12:19:13 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20=EA=B5=AD=EA=B0=80=20=EC=84=A0=ED=83=9D?= =?UTF-8?q?=20=EB=A1=9C=EC=A7=81=EC=97=90=EC=84=9C=20=EB=9E=9C=EB=8D=A4=20?= =?UTF-8?q?=EC=9E=84=EA=B4=80=20=EA=B8=B0=EB=8A=A5=EC=9C=BC=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/game-engine/src/turn/ai/generalAiGeneralActions.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/app/game-engine/src/turn/ai/generalAiGeneralActions.ts b/app/game-engine/src/turn/ai/generalAiGeneralActions.ts index ac61113..7220923 100644 --- a/app/game-engine/src/turn/ai/generalAiGeneralActions.ts +++ b/app/game-engine/src/turn/ai/generalAiGeneralActions.ts @@ -723,12 +723,7 @@ export const do국가선택 = (ai: GeneralAI) => { } if (ai.rng.nextBool(0.3)) { - const nations = ai.worldRef.listNations().filter((nation) => nation.id > 0); - if (nations.length === 0) { - return null; - } - const destNation = ai.rng.choice(nations); - return ai.buildGeneralCandidate('che_임관', { destNationId: destNation.id }, '국가선택'); + return ai.buildGeneralCandidate('che_랜덤임관', {}, '국가선택'); } if (ai.rng.nextBool(0.2) && ai.map) {