Fix crash in OrderBuffer

This commit is contained in:
tomas
2022-09-24 20:29:02 +02:00
committed by Gustas
parent 899298442a
commit 7b7ccf4128
2 changed files with 5 additions and 1 deletions

View File

@@ -88,6 +88,9 @@ namespace OpenRA.Server
nextUpdate = now + Interval;
if (deltas.IsEmpty)
yield break;
if (deltas.Values.Any(q => q.Count != NumberOfFrames))
yield break;