From be4a9d881ae6814693e6968084ce61a26397110c Mon Sep 17 00:00:00 2001 From: bones_was_here Date: Tue, 14 Jul 2020 22:51:11 +1000 Subject: [PATCH] From ioq3: remove references to unused teamtournament gametype --- qcsrc/server/compat/quake3.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/server/compat/quake3.qc b/qcsrc/server/compat/quake3.qc index ee8530796..23a54f6fb 100644 --- a/qcsrc/server/compat/quake3.qc +++ b/qcsrc/server/compat/quake3.qc @@ -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; } -- 2.39.2