diff --git a/src/ecs.js b/src/ecs.js index e6bb76b..8401f8c 100644 --- a/src/ecs.js +++ b/src/ecs.js @@ -206,7 +206,7 @@ class ECS { for (let i = 0, system; system = this.systems[i]; i += 1) { if (this.updateCounter % system.frequency > 0) { - break; + continue; } if (this.entitiesSystemsDirty.length) {