1
0
mirror of synced 2024-11-28 00:20:53 +01:00

Correct initial value of UserDatum.CostumeData

This commit is contained in:
esuo1198 2023-09-16 02:27:44 +09:00
parent 7eee09d32d
commit e8b26e9352

View File

@ -23,7 +23,7 @@ namespace GameDatabase.Entities
public uint ColorBody { get; set; } public uint ColorBody { get; set; }
public uint ColorFace { get; set; } public uint ColorFace { get; set; }
public uint ColorLimb { get; set; } public uint ColorLimb { get; set; }
public string CostumeData { get; set; } = "[[],[],[],[],[]]"; public string CostumeData { get; set; } = "[]";
public bool DisplayDan { get; set; } public bool DisplayDan { get; set; }
public bool DisplayAchievement { get; set; } public bool DisplayAchievement { get; set; }
public Difficulty AchievementDisplayDifficulty { get; set; } public Difficulty AchievementDisplayDifficulty { get; set; }