Skip to content

Commit

Permalink
Trivia: Fix official-ending message
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnikaCodes authored and Zarel committed Aug 22, 2024
1 parent 5bade37 commit a6a2f2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/chat-plugins/trivia/trivia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ export class Trivia extends Rooms.RoomGame<TriviaPlayer> {
if (!user) continue;
user.sendTo(
this.room.roomid,
(this.game.givesPoints ? this.room.tr`You gained ${player.points} and answered ` : this.room.tr`You answered `) +
(this.game.givesPoints ? this.room.tr`You gained ${player.points} points and answered ` : this.room.tr`You answered `) +
this.room.tr`${player.correctAnswers} questions correctly.`
);
}
Expand Down

0 comments on commit a6a2f2a

Please sign in to comment.