]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
From ioq3: remove references to unused teamtournament gametype
authorbones_was_here <bones_was_here@yahoo.com.au>
Tue, 14 Jul 2020 12:51:11 +0000 (22:51 +1000)
committerbones_was_here <bones_was_here@yahoo.com.au>
Tue, 14 Jul 2020 12:51:11 +0000 (22:51 +1000)
qcsrc/server/compat/quake3.qc

index ee8530796e8f2f552786b76940edec1fe4a755a2..23a54f6fb840582dce4b09119918531a08328eab 100644 (file)
@@ -314,7 +314,7 @@ bool DoesQ3ARemoveThisEntity(entity this)
        if(this.gametype)
        {
                string gametypename;
-               // static char *gametypeNames[] = {"ffa", "tournament", "single", "team", "ctf", "oneflag", "obelisk", "harvester", "teamtournament"}
+               // From ioq3 g_spawn.c: static char *gametypeNames[] = {"ffa", "tournament", "single", "team", "ctf", "oneflag", "obelisk", "harvester"};
                gametypename = "ffa";
                if(teamplay)
                        gametypename = "team";
@@ -326,7 +326,7 @@ bool DoesQ3ARemoveThisEntity(entity this)
                        gametypename = "tournament";
                if(maxclients == 1)
                        gametypename = "single";
-               // we do not have the other types (obelisk, harvester, teamtournament)
+               // we do not have the other types (obelisk, harvester)
                if(strstrofs(this.gametype, gametypename, 0) < 0)
                        return true;
        }