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.
1 parent a02bbb3 commit 0b6f6d1Copy full SHA for 0b6f6d1
ZkLobbyServer/ServerBattle.cs
@@ -1135,6 +1135,15 @@ protected virtual async Task OnDedicatedExited(SpringBattleContext springBattleC
1135
discussionTimer.Interval = (DiscussionSeconds - 1) * 1000;
1136
discussionTimer.Start();
1137
previousGamePlayers = springBattleContext.ActualPlayers.Select(x => x.Name).ToList();
1138
+ foreach (var n in previousGamePlayers)
1139
+ {
1140
+ UserBattleStatus ubs;
1141
+ if (Users.TryGetValue(n, out ubs))
1142
1143
+ ubs.QueueOrder = -1;
1144
+ ValidateBattleStatus(ubs);
1145
+ }
1146
1147
}
1148
1149
await CheckCloseBattle();
0 commit comments