Skip to content

Commit

Permalink
remove artist from answer and only song
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafas committed Apr 10, 2026
1 parent 29a32d3 commit 8ce89c2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -356,12 +356,12 @@ private void buildAndStartSession(String sessionId, List<Player> sessionPlayers,
Song correct = songs.get(q);

List<String> options = new ArrayList<>();
options.add(correct.getTitle() + " - " + correct.getArtist());
options.add(correct.getTitle());

int decoysAdded = 0;
for (Song decoy : decoyPool) {
if (decoysAdded >= OPTIONS_PER_Q - 1) break;
String label = decoy.getTitle() + " - " + decoy.getArtist();
String label = decoy.getTitle();
if (!options.contains(label)) {
options.add(label);
decoysAdded++;
Expand Down

0 comments on commit 8ce89c2

Please sign in to comment.