From 74174ca343ea07839eb6cb68d035a3bd77b0d1ed Mon Sep 17 00:00:00 2001 From: Hide_D Date: Mon, 11 Mar 2024 15:41:03 +0000 Subject: [PATCH] fix: misc --- @sammo/game_logic/src/Entity/NationEntity.ts | 4 ++-- @sammo/game_logic/src/defs.ts | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/@sammo/game_logic/src/Entity/NationEntity.ts b/@sammo/game_logic/src/Entity/NationEntity.ts index 37d0e00..5e84942 100644 --- a/@sammo/game_logic/src/Entity/NationEntity.ts +++ b/@sammo/game_logic/src/Entity/NationEntity.ts @@ -1,4 +1,4 @@ -import type { CityID, ColorType, IntYearMonth, NationCmdType, NationID, NationLevel, NationName, NationType, RemainMonth, ReservedTurn, StaffLevel, StrategicCmd } from "../defs.js"; +import type { CityID, ColorType, IntYearMonth, NationCmdType, NationID, NationLevel, NationName, NationType, RemainMonth, ReservedTurn, StaffLevel, StrategicCmdType } from "../defs.js"; export interface INationEntity{ id: NationID; @@ -17,7 +17,7 @@ export interface INationEntity{ //TODO: 이게 뭐더라 capset: IntYearMonth; - strategicCmdLimit: Record; + strategicCmdLimit: Record; //세율 taxRate: number; diff --git a/@sammo/game_logic/src/defs.ts b/@sammo/game_logic/src/defs.ts index 6b548aa..0de1ce1 100644 --- a/@sammo/game_logic/src/defs.ts +++ b/@sammo/game_logic/src/defs.ts @@ -25,7 +25,6 @@ export type ScenarioID = number & { zz_t?: "ScenarioID" }; //TODO: 무언가의 keyof 로 바꿔야함 export type NationType = string & { zz_t?: "NationType" }; -export type StrategicTurnType = string & { zz_t?: "StrategicTurnType" }; export type ItemKeyType = 'horse' | 'weapon' | 'book' | 'item'; export type ItemID = string & { zz_t?: "ItemID" };