begin gacha system, ch2 fix

This commit is contained in:
Mikhail Thompson
2024-06-29 22:05:18 +03:00
parent 1698b741c4
commit 564a405baf
8 changed files with 133 additions and 20 deletions

View File

@@ -50,7 +50,7 @@ namespace nksrv.LobbyServer.Msgs.User
}
foreach (var item in user.Characters)
{
response.Character.Add(new NetUserCharacterData() { Default = new() { Csn = item.Csn, Skill1Lv = item.Skill1Lvl, Skill2Lv = item.Skill2Lvl, CostumeId = item.CostumeId, Lv = item.Level, Grade = item.Grade, Tid = item.Tid } });
response.Character.Add(new NetUserCharacterData() { Default = new() { Csn = item.Csn, Skill1Lv = item.Skill1Lvl, Skill2Lv = item.Skill2Lvl, CostumeId = item.CostumeId, Lv = item.Level, Grade = item.Grade, Tid = item.Tid, UltiSkillLv = item.UltimateLevel } });
}
if (user.Characters.Count > 0)