From 13d22ece4a3e2e1ce53a4b440a478266cd7dee85 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sat, 7 Feb 2026 05:04:37 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20'AvailableRecruitCrewType'=20=EC=A0=9C?= =?UTF-8?q?=EC=95=BD=20=EC=A1=B0=EA=B1=B4=20=EC=9D=B4=EB=A6=84=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/logic/src/actions/turn/general/che_징병.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/logic/src/actions/turn/general/che_징병.ts b/packages/logic/src/actions/turn/general/che_징병.ts index 1cc51df..ed68d61 100644 --- a/packages/logic/src/actions/turn/general/che_징병.ts +++ b/packages/logic/src/actions/turn/general/che_징병.ts @@ -479,7 +479,7 @@ export class ActionDefinition< crewType ?? undefined ).rice; }; - const checkCrewTypeAvailable = (): Constraint => ({ + const availableRecruitCrewType = (): Constraint => ({ name: 'AvailableRecruitCrewType', requires: () => requirements, test: (context, view) => { @@ -513,7 +513,7 @@ export class ActionDefinition< ]; if (ctx.mode === 'full') { - constraints.push(checkCrewTypeAvailable()); + constraints.push(availableRecruitCrewType()); } return constraints;