From c5ec3819fb01f560efdac9d0a1758897b9cd149c Mon Sep 17 00:00:00 2001 From: shiibe Date: Wed, 14 Sep 2022 18:22:20 -0400 Subject: [PATCH] Fix maximums --- TaikoWebUI/Services/GameDataService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TaikoWebUI/Services/GameDataService.cs b/TaikoWebUI/Services/GameDataService.cs index fcf9380..c30d6bf 100644 --- a/TaikoWebUI/Services/GameDataService.cs +++ b/TaikoWebUI/Services/GameDataService.cs @@ -14,12 +14,12 @@ public class GameDataService : IGameDataService private ImmutableDictionary danMap = null!; public const int COSTUME_HEAD_MAX = 140; - public const int COSTUME_FACE_MAX = 59; + public const int COSTUME_FACE_MAX = 58; public const int COSTUME_BODY_MAX = 156; public const int COSTUME_KIGURUMI_MAX = 154; public const int COSTUME_PUCHI_MAX = 129; public const int COSTUME_COLOR_MAX = 63; - public const int PLAYER_TITLE_MAX = 749; + public const int PLAYER_TITLE_MAX = 750; public static string[] headMap = new string[COSTUME_HEAD_MAX]; public static string[] faceMap = new string[COSTUME_FACE_MAX];