fix: async

This commit is contained in:
cha0s 2024-07-01 21:45:38 -05:00
parent 43a6b12488
commit 47f0b1040e

View File

@ -61,7 +61,7 @@ export default class Ecs {
}
}
this.destroyMany(destroying);
this.insertMany(updating);
await this.insertMany(updating);
this.removeMany(removing);
await this.createManySpecific(creating);
}