diff --git a/backend/MemeBE/hubs/GameHub.cs b/backend/MemeBE/hubs/GameHub.cs index 9d0d5ff..5dc83c2 100644 --- a/backend/MemeBE/hubs/GameHub.cs +++ b/backend/MemeBE/hubs/GameHub.cs @@ -265,9 +265,8 @@ public async Task GameEnded(Room room) var loser = sortedPlayersByPoints.Last(); // Generate the message - var message = $"Congratulations to {winner.Nick} for being the ultimate poker face in the game! With only {winner.LaughPoints} Laugh Points, they are truly the hardest to crack a smile. Well played!
" + - $"On the flip side, let's have a round of applause for {loser.Nick}. With a grand total of {loser.LaughPoints} Laugh Points, they've proven that laughter is indeed the best medicine... or they just have a really good sense of humor!
" + - "Here's how everyone stacked up:
"; + var message = $"

Kudos to {winner.Nick}, the stoic champ with just {winner.LaughPoints} points! 🏆

" + + $"

Shoutout to {loser.Nick} for the biggest laugh tally of {loser.LaughPoints} points! 😄

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