From 359b75128cd4ffd73dee65d1dc304355a92edd71 Mon Sep 17 00:00:00 2001 From: Kat <30480654+Metraberryy@users.noreply.github.com> Date: Thu, 2 Jan 2025 13:58:55 -0800 Subject: [PATCH] formatting Co-authored-by: sudokoko --- .../Controllers/Slots/ScoreController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ProjectLighthouse.Servers.GameServer/Controllers/Slots/ScoreController.cs b/ProjectLighthouse.Servers.GameServer/Controllers/Slots/ScoreController.cs index d80d2cbc5..8a859fd73 100644 --- a/ProjectLighthouse.Servers.GameServer/Controllers/Slots/ScoreController.cs +++ b/ProjectLighthouse.Servers.GameServer/Controllers/Slots/ScoreController.cs @@ -176,6 +176,7 @@ public async Task SubmitScore(string slotType, int id, int childI { GameScore? second = scores.Scores[1]; UserEntity? user = await this.database.UserFromGameToken(token); + await this.database.SendNotification(second.UserId, $"{user?.InfoXml} beat your highscore ({second.Points}) on {slot.InfoXml} with a score of {score.Points}.", true); }