Skip to content

Commit

Permalink
Fix SDBLoader backup index
Browse files Browse the repository at this point in the history
  • Loading branch information
Xsear committed May 1, 2024
1 parent 8e8ade1 commit 8525e3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UdpHosts/GameServer/StaticDB/Loaders/StaticDBLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ private static T[] LoadStaticDB<T>(string tableName)
}
else if (backupIndex != -1)
{
propInfo.SetValue(entry, row[index], null);
propInfo.SetValue(entry, row[backupIndex], null);
}
else
{
Expand Down

0 comments on commit 8525e3a

Please sign in to comment.