chore: format

This commit is contained in:
cha0s 2019-05-02 21:37:37 -05:00
parent 497b4219e4
commit f99477c693

View File

@ -98,6 +98,7 @@ export class EntityList extends decorate(class {}) {
}
tick(elapsed) {
// Run after destruction tickers.
this.tickAfterDestructionTickers(elapsed);
// Run normal tickers.
for (const uuid in this._entities) {
@ -120,7 +121,6 @@ export class EntityList extends decorate(class {}) {
}
tickAfterDestructionTickers(elapsed) {
// Run after destruction tickers.
const finishedTickers = [];
for (let i = 0; i < this._afterDestructionTickers.length; ++i) {
const ticker = this._afterDestructionTickers[i];