From 7de94b663d7e29f145aed15485de5cdafe7b1369 Mon Sep 17 00:00:00 2001 From: z411 Date: Fri, 2 Oct 2020 03:16:57 -0300 Subject: [PATCH] Freeze tag alone notif --- qcsrc/common/gamemodes/gamemode/freezetag/sv_freezetag.qc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/qcsrc/common/gamemodes/gamemode/freezetag/sv_freezetag.qc b/qcsrc/common/gamemodes/gamemode/freezetag/sv_freezetag.qc index 82bf8f682..7c505abfe 100644 --- a/qcsrc/common/gamemodes/gamemode/freezetag/sv_freezetag.qc +++ b/qcsrc/common/gamemodes/gamemode/freezetag/sv_freezetag.qc @@ -175,8 +175,10 @@ void freezetag_LastPlayerForTeam_Notify(entity this) if(round_handler_IsRoundStarted()) { entity pl = freezetag_LastPlayerForTeam(this); - if(pl) + if(pl) { Send_Notification(NOTIF_ONE, pl, MSG_CENTER, CENTER_ALONE); + Send_Notification(NOTIF_ONE, pl, MSG_ANNCE, ANNCE_ALONE); + } } } -- 2.39.2