diff --git a/src/client/ClientGameRunner.ts b/src/client/ClientGameRunner.ts index da4cd22e6..83c4e5f40 100644 --- a/src/client/ClientGameRunner.ts +++ b/src/client/ClientGameRunner.ts @@ -632,7 +632,15 @@ export class ClientGameRunner { }; } { if (batch.length === 0) { - return null; + return { + gameUpdate: null, + tileMetrics: { + count: 0, + utilization: 0, + overflow: 0, + drainTime: 0, + }, + }; } const last = batch[batch.length - 1];