We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0ffd944 + 9afd069 commit b291a3eCopy full SHA for b291a3e
ZkLobbyServer/ServerBattle.cs
@@ -1064,7 +1064,7 @@ public virtual void ValidateBattleStatus(UserBattleStatus ubs)
1064
if (ubs.QueueOrder <= 0)
1065
{
1066
ubs.QueueOrder = ++QueueCounter;
1067
- if (IsInPreviousGame(ubs.Name)) ubs.QueueOrder += 1000;
+ if (IsInPreviousGame(ubs.Name)) ubs.QueueOrder += 100000;
1068
}
1069
1070
else
@@ -1142,6 +1142,7 @@ protected virtual async Task OnDedicatedExited(SpringBattleContext springBattleC
1142
1143
ubs.QueueOrder = -1;
1144
ValidateBattleStatus(ubs);
1145
+ await server.Broadcast(Users.Keys, ubs.ToUpdateBattleStatus());
1146
1147
1148
0 commit comments