Skip to content

Commit

Permalink
Fix arena queue window in TBC.
Browse files Browse the repository at this point in the history
  • Loading branch information
ratkosrb committed Apr 26, 2022
1 parent 51cfb70 commit 83439f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HermesProxy/World/Server/WorldSocket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ public void SendAuthResponse(BattlenetRpcErrorCode code, bool queued, uint queue
if (code == BattlenetRpcErrorCode.Ok)
{
response.SuccessInfo = new AuthResponse.AuthSuccessInfo();
response.SuccessInfo.ActiveExpansionLevel = (byte)0;
response.SuccessInfo.ActiveExpansionLevel = (byte)(LegacyVersion.GetExpansionVersion() - 1);
response.SuccessInfo.AccountExpansionLevel = (byte)0;
response.SuccessInfo.VirtualRealmAddress = _realmId.GetAddress();
response.SuccessInfo.Time = (uint)Time.UnixTime;
Expand Down

0 comments on commit 83439f7

Please sign in to comment.