Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
mister-wise committed Jan 28, 2024
2 parents bae818a + 9fafc8c commit aaa746f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions backend/MemeBE/hubs/GameHub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -265,9 +265,8 @@ public async Task GameEnded(Room room)
var loser = sortedPlayersByPoints.Last();

// Generate the message
var message = $"Congratulations to <b>{winner.Nick}</b> for being the ultimate poker face in the game! With only <b>{winner.LaughPoints}</b> Laugh Points, they are truly the hardest to crack a smile. Well played!</br>" +
$"On the flip side, let's have a round of applause for <b>{loser.Nick}</b>. With a grand total of <b>{loser.LaughPoints}</b> Laugh Points, they've proven that laughter is indeed the best medicine... or they just have a really good sense of humor!<br>" +
"Here's how everyone stacked up:<br>";
var message = $"<p>Kudos to <strong>{winner.Nick}</strong>, the stoic champ with just <strong>{winner.LaughPoints}</strong> points! 🏆</p>" +
$"<p>Shoutout to <strong>{loser.Nick}</strong> for the biggest laugh tally of <strong>{loser.LaughPoints}</strong> points! 😄</p>";

// Add the list of all players with their points
foreach (var player in sortedPlayersByPoints)
Expand Down

0 comments on commit aaa746f

Please sign in to comment.