]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Disable the duel gametype vote preset (causes issues with servers specifying a custom...
authorMario <zacjardine@y7mail.com>
Sun, 9 Sep 2018 19:38:26 +0000 (05:38 +1000)
committerMario <zacjardine@y7mail.com>
Sun, 9 Sep 2018 19:38:26 +0000 (05:38 +1000)
gamemodes-server.cfg

index 41b5fc5dbe745dd85c02b81e6ad2b3ac6d2a574f..f13dd854ac08ad2f2eea309ae36ba214388ce124 100644 (file)
@@ -38,8 +38,7 @@ alias sv_hook_gameend
 // These are called when the mode is switched via gametype vote screen,
 // earlier than gamestart hooks (useful for enabling per-gamemode mutators)
 // The _all hook is called before the specific one
-// here it sets g_maxplayers to undo what duel does
-alias sv_vote_gametype_hook_all "set g_maxplayers 0"
+alias sv_vote_gametype_hook_all
 alias sv_vote_gametype_hook_as
 alias sv_vote_gametype_hook_ca
 alias sv_vote_gametype_hook_ctf
@@ -56,14 +55,15 @@ alias sv_vote_gametype_hook_ons
 alias sv_vote_gametype_hook_rc
 alias sv_vote_gametype_hook_tdm
 
-// Preset to allow duel to be used for the gametype voting screen
+// Example preset to allow duel to be used for the gametype voting screen
 // sv_vote_gametype_*_type Must be set to the name of the gametype the option is based on
 // sv_vote_gametype_*_name Contains a human-readable name of the gametype
 // sv_vote_gametype_*_description Contains a longer description
-set sv_vote_gametype_duel_type dm
-set sv_vote_gametype_duel_name Duel
-set sv_vote_gametype_duel_description "One vs One match"
-alias sv_vote_gametype_hook_duel "set g_maxplayers 2"
+//set sv_vote_gametype_duel_type dm
+//set sv_vote_gametype_duel_name Duel
+//set sv_vote_gametype_duel_description "One vs One match"
+//alias sv_vote_gametype_hook_all "set g_maxplayers 0"
+//alias sv_vote_gametype_hook_duel "set g_maxplayers 2"
 
 
 // ===========