diff --git a/packages/logic/src/actions/turn/general/che_건국.ts b/packages/logic/src/actions/turn/general/che_건국.ts index 463b6ca..9ecf043 100644 --- a/packages/logic/src/actions/turn/general/che_건국.ts +++ b/packages/logic/src/actions/turn/general/che_건국.ts @@ -32,7 +32,7 @@ export class ActionDefinition< parseArgs(raw: unknown): FoundingArgs | null { if (typeof raw !== 'object' || raw === null) return null; - const { nationName, nationType, colorType } = raw as any; + const { nationName, nationType, colorType } = raw as Record; if (typeof nationName !== 'string' || !nationName) return null; if (typeof nationType !== 'string' || !nationType) return null; if (typeof colorType !== 'number') return null;