diff options
Diffstat (limited to 'src/game.js')
-rw-r--r-- | src/game.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.js b/src/game.js index 07ea67b..7301f73 100644 --- a/src/game.js +++ b/src/game.js @@ -26,7 +26,7 @@ game.initialize = () => { game.entities = {}; - Array(400).fill(null).forEach((_, i) => { + Array(10).fill(null).forEach((_, i) => { const bigBlue = game.createBigBlue(); bigBlue.addComponent(game.components.GridPosition({x: Math.floor(Math.random() * 15), y: Math.floor(Math.random() * 13)})); bigBlue.addComponent(game.components.Pushable()); |