feat: 국가 선택 로직에서 랜덤 임관 기능으로 변경

This commit is contained in:
2026-01-24 12:19:13 +00:00
parent 4e521de0f3
commit 65194750e9
@@ -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) {