초기 덱 생성 불가 문제 수정

This commit is contained in:
김판돌 2024-04-07 13:06:55 +09:00
parent 477b1de03c
commit 2a56bc4da7
1 changed files with 1 additions and 0 deletions

View File

@ -92,6 +92,7 @@ namespace Server.Service
deckInfo.deck_unit7_id = itemManager.box.deckUnitInfo[7].id; deckInfo.deck_unit7_id = itemManager.box.deckUnitInfo[7].id;
deckInfo.deck_unit8_id = itemManager.box.deckUnitInfo[8].id; deckInfo.deck_unit8_id = itemManager.box.deckUnitInfo[8].id;
Statics.deckInfoSQL.Insert(deckInfo); Statics.deckInfoSQL.Insert(deckInfo);
Statics.deckInfoSQL.SaveChanges();
deckInfoList = new List<DeckInfo> { deckInfo }; deckInfoList = new List<DeckInfo> { deckInfo };
#endregion #endregion
} }