Fix misc glitches

This commit is contained in:
Casper Warden
2023-11-28 18:24:35 +00:00
parent deb1ddc05e
commit 09db20682e
6 changed files with 7 additions and 7 deletions

View File

@@ -10,7 +10,7 @@ import { BatchQueue } from './BatchQueue';
export class ObjectResolver
{
private resolveQueue = new BatchQueue<GameObject>(256, this.resolveInternal.bind(this));
private getCostsQueue = new BatchQueue<GameObject>(256, this.getCostsInternal.bind(this));
private getCostsQueue = new BatchQueue<GameObject>(64, this.getCostsInternal.bind(this));
constructor(private region?: Region)
{