From bc9c0fd71737fabcce17b0453f45e6376dc2c408 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Thu, 8 Jan 2026 14:19:13 +0000 Subject: [PATCH] misc --- packages/logic/src/actions/turn/general/che_건국.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;