* the <code>int</code> id of the phase
*/
private void determineTurnOrderIUI(IGame.Phase phase) {
for (Enumeration<Entity> loop = game.getEntities(); loop.hasMoreElements();) {
final Entity entity = loop.nextElement();
entity.resetOtherTurns();
if (entity.isSelectableThisTurn()) {
entity.incrementOtherTurns();
}
}
// Now, generate the global order of all teams' turns.