Improvements to object resolution

This commit is contained in:
Casper Warden
2024-09-09 01:45:51 +01:00
parent e2a9837172
commit dd7b313b54
7 changed files with 18 additions and 26 deletions

View File

@@ -99,6 +99,10 @@ export class ObjectResolver
}
const objArray = Array.from(objs.values());
for (const obj of objArray)
{
obj.resolveAttempts = (obj.resolveAttempts ?? 0) + 1;
}
try
{
await this.region.clientCommands.region.selectObjects(objArray);