From: Mario Date: Fri, 21 Nov 2014 12:35:46 +0000 (+1100) Subject: Set default CTF leadlimit to 6 (https://gitlab.com/xonotic/xonotic-data.pk3dir/issues... X-Git-Tag: xonotic-v0.8.0~112^2 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0a9dbcbb188c6bb8a39dfaf8b0d35e9098be4649;p=xonotic%2Fxonotic-data.pk3dir.git Set default CTF leadlimit to 6 (https://gitlab.com/xonotic/xonotic-data.pk3dir/issues/102) --- diff --git a/qcsrc/common/mapinfo.qh b/qcsrc/common/mapinfo.qh index aa1d8fd5e..bc624fdb1 100644 --- a/qcsrc/common/mapinfo.qh +++ b/qcsrc/common/mapinfo.qh @@ -50,7 +50,7 @@ REGISTER_GAMETYPE(_("Race CTS"),cts,g_cts,CTS,"timelimit=20 skill=-1",_("Race fo REGISTER_GAMETYPE(_("Team Deathmatch"),tdm,g_tdm,TEAM_DEATHMATCH,"timelimit=20 pointlimit=50 teams=2 leadlimit=0",_("Kill all enemy teammates")); #define g_tdm IS_GAMETYPE(TEAM_DEATHMATCH) -REGISTER_GAMETYPE(_("Capture the Flag"),ctf,g_ctf,CTF,"timelimit=20 caplimit=10 leadlimit=0",_("Find and bring the enemy flag to your base to capture it")); +REGISTER_GAMETYPE(_("Capture the Flag"),ctf,g_ctf,CTF,"timelimit=20 caplimit=10 leadlimit=6",_("Find and bring the enemy flag to your base to capture it")); #define g_ctf IS_GAMETYPE(CTF) REGISTER_GAMETYPE(_("Clan Arena"),ca,g_ca,CA,"timelimit=20 pointlimit=10 leadlimit=0",_("Kill all enemy teammates to win the round"));