added flag

This commit is contained in:
Benjamin Feyer
2024-12-10 14:07:52 +01:00
parent 6e54ad0196
commit 40a61daa58

View File

@@ -39,6 +39,8 @@ public void enter() {
ArrayList<UUID> ownPieces = new ArrayList<>(possibleOwnPieces.stream().map(Piece::getUuid).toList());
ArrayList<UUID> enemyPieces = new ArrayList<>(possibleEnemyPieces.stream().map(Piece::getUuid).toList());
logic.addNotification(new SelectableSwapNotification(ownPieces, enemyPieces));
possibleOwnPieces = null;
possibleEnemyPieces = null;
}
@Override