인게임 예약 명령과 장수 상태 표시를 바로잡음

This commit is contained in:
2026-09-04 19:16:56 +00:00
parent 5d220de739
commit 0157ff6a6b
31 changed files with 511 additions and 81 deletions
@@ -42,7 +42,9 @@ export const FOUNDING_ARGS_SCHEMA = z.object({
nationName: z
.string()
.min(1)
.refine((value) => getLegacyStringWidth(value) <= 18),
.refine((value) => getLegacyStringWidth(value) <= 18, {
message: '국가명은 전각 9자 또는 반각 18자 이하여야 합니다.',
}),
nationType: z.string().refine(isAvailableNationTraitKey),
colorType: z
.number()