Problema de ArrayList

Eu tenho dois valores,small_red esmall_blue:

private EnemyInfo small_red = new EnemyInfo("Red Fighter", Core.jf.getToolkit().createImage(Core.class.getResource("/com/resources/ENEMY_01.png")), 10, 100, new Location(0, 0), false, 0);
private EnemyInfo small_blue = new EnemyInfo("Blue Fighter", Core.jf.getToolkit().createImage(Core.class.getResource("/com/resources/ENEMY_02.png")), 50, 100, new Location(0, 0), false, 0);

e uma ArrayList:

private ArrayList<EnemyInfo> activeEnemies = new ArrayList<EnemyInfo>();

Digamos que eu adicione três dossmall_red e cinco dossmall_blue inimigos noactiveEnemies. Sempre que eu quiser alterar uma variável dentro da matriz, por exemplo:

activeEnemies.get(1).setActive(true); // change one of the small_red enemies

cada small_red na matriz é alterada, em vez de apenas o índice1.

questionAnswers(1)

yourAnswerToTheQuestion