Skip to content

Commit

Permalink
Elaborate on play count migration step
Browse files Browse the repository at this point in the history
  • Loading branch information
Beyley committed Oct 14, 2023
1 parent b18f11a commit d41a877
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Refresh.GameServer/Database/GameDatabaseProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ protected override void Migrate(Migration migration, ulong oldVersion)
dynamic oldPlayLevelRelation = oldPlayLevelRelations.ElementAt(i);
PlayLevelRelation newPlayLevelRelation = newPlayLevelRelations.ElementAt(i);

//In version 93, we added a count to PlayLevelRelation
if (oldVersion < 93)
{
newPlayLevelRelation.Count = 1;
Expand Down

0 comments on commit d41a877

Please sign in to comment.