Skip to content

Commit

Permalink
chore: reduce max number of enemies (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrueckert committed Sep 2, 2021
1 parent 4b826b2 commit ef988fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class EnemySpawnSystem extends BaseComponentSystem implements UpdateSubsc
/**
* The maximum number of enemies that can spawn in the world.
*/
private static final int MAX_ENEMIES = 30;
private static final int MAX_ENEMIES = 15;

@In
private EntityManager entityManager;
Expand Down

0 comments on commit ef988fd

Please sign in to comment.