Skip to content

Commit

Permalink
fix that all answers were wrong due to artist change
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafas committed Apr 10, 2026
1 parent 4035878 commit 6f0d2bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/group07/beatbattle/model/Question.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public Question(String id, Song song, List<String> options, int roundIndex) {
public int getRoundIndex() { return roundIndex; }

public String getCorrectAnswer() {
return song.getTitle() + " - " + song.getArtist();
return song.getTitle();
}

public boolean isCorrect(String selectedAnswer) {
Expand Down

0 comments on commit 6f0d2bd

Please sign in to comment.