]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Don't show alone messages to spectators as that may out the hunter, also increase...
authorMario <mario.mario@y7mail.com>
Sat, 17 Oct 2020 03:59:11 +0000 (13:59 +1000)
committerMario <mario.mario@y7mail.com>
Sat, 17 Oct 2020 03:59:11 +0000 (13:59 +1000)
qcsrc/common/gamemodes/gamemode/survival/survival.qh
qcsrc/common/gamemodes/gamemode/survival/sv_survival.qc

index 2176acbbd8b7338bf2e39cfb283e66900d9bf43a..17a01d84c9f16cb61656d53c5e1ddf2dc220e523 100644 (file)
@@ -9,7 +9,7 @@ void HUD_Mod_Survival(vector pos, vector mySize);
 CLASS(Survival, Gametype)
     INIT(Survival)
     {
-        this.gametype_init(this, _("Survival"),"sv","g_survival",GAMETYPE_FLAG_USEPOINTS,"","timelimit=20 pointlimit=20",_("Identify and eliminate all the hunters before all your allies are gone"));
+        this.gametype_init(this, _("Survival"),"sv","g_survival",GAMETYPE_FLAG_USEPOINTS,"","timelimit=30 pointlimit=20",_("Identify and eliminate all the hunters before all your allies are gone"));
     }
     METHOD(Survival, m_isAlwaysSupported, bool(Gametype this, int spawnpoints, float diameter))
     {
index 130813b99b999ead95a0b05b34547aa0e86af510..1c066d8b717707b81cfceb11507b4b6b0a3c8145 100644 (file)
@@ -326,7 +326,7 @@ void surv_LastPlayerForTeam_Notify(entity this)
        {
                entity pl = surv_LastPlayerForTeam(this);
                if (pl)
-                       Send_Notification(NOTIF_ONE, pl, MSG_CENTER, CENTER_ALONE);
+                       Send_Notification(NOTIF_ONE_ONLY, pl, MSG_CENTER, CENTER_ALONE);
        }
 }