Skip to content

Commit

Permalink
Update TargetedDatabase for wotlkClassic
Browse files Browse the repository at this point in the history
  • Loading branch information
funjoker committed Nov 23, 2023
1 parent e746dce commit 6ff4c3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion WowPacketParser/SQL/Builder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ private static List<TargetedDatabase> GetExpectedTargetDatabasesForExpansion(Cli
case ClientType.Shadowlands: // == ClientType.BurningCrusadeClassic
return new List<TargetedDatabase> { TargetedDatabase.Shadowlands, TargetedDatabase.Classic, TargetedDatabase.WotlkClassic };
case ClientType.Dragonflight:
return new List<TargetedDatabase> { TargetedDatabase.Dragonflight };
return new List<TargetedDatabase> { TargetedDatabase.Dragonflight, TargetedDatabase.WotlkClassic };
default:
return new List<TargetedDatabase>();
}
Expand Down
2 changes: 1 addition & 1 deletion WowPacketParser/Store/Objects/HotfixData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public sealed record HotfixData : IDataModel
[DBFieldName("Deleted", TargetedDatabaseFlag.TillLegion)]
public bool? Deleted;

[DBFieldName("Status", TargetedDatabaseFlag.SinceShadowlands)]
[DBFieldName("Status", TargetedDatabaseFlag.SinceShadowlands | TargetedDatabaseFlag.WotlkClassic)]
public HotfixStatus? Status;

[DBFieldName("VerifiedBuild")]
Expand Down

0 comments on commit 6ff4c3f

Please sign in to comment.