Migrate from tslint to eslint (will tighten rules in further commits)

This commit is contained in:
Casper Warden
2021-09-23 17:14:23 +01:00
parent 2c4833baf7
commit bc6ee025cf
121 changed files with 3185 additions and 2863 deletions

View File

@@ -901,7 +901,13 @@ export class GameObject implements IGameObjectData
if (item.name === tmpName)
{
// We are intentionally not waiting for this rename job so that the wait below succeeds
item.renameInTask(this, name).then(() => {}).catch(() => {});
item.renameInTask(this, name).then(() =>
{
}).catch(() =>
{
});
try
{
await this.waitForInventoryUpdate();