projects
/
xonotic
/
xonotic-data.pk3dir.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ff30741
)
Freeze tag alone notif
author
z411 <z411@omaera.org>
Fri, 2 Oct 2020 06:16:57 +0000
(
03:16
-0300)
committer
z411 <z411@omaera.org>
Fri, 2 Oct 2020 06:16:57 +0000
(
03:16
-0300)
qcsrc/common/gamemodes/gamemode/freezetag/sv_freezetag.qc
patch
|
blob
|
history
diff --git
a/qcsrc/common/gamemodes/gamemode/freezetag/sv_freezetag.qc
b/qcsrc/common/gamemodes/gamemode/freezetag/sv_freezetag.qc
index 82bf8f682eb3da29f827d06c8b264bbfa04285d2..7c505abfe9b4ddbea1191ae1a4c8f75a6c18e727 100644
(file)
--- 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);
+ }
}
}