From 969b8c714410aef800d00f443e66613b8978cb2f Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 18 Apr 2013 18:29:19 +1000 Subject: [PATCH] Add td monster spawns to the mapinfo entity detection --- qcsrc/common/mapinfo.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/mapinfo.qc b/qcsrc/common/mapinfo.qc index ad5fc9914..3cfb7f6f0 100644 --- a/qcsrc/common/mapinfo.qc +++ b/qcsrc/common/mapinfo.qc @@ -313,7 +313,7 @@ float _MapInfo_Generate(string pFilename) // 0: failure, 1: ok ent, 2: ok bsp MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_CTF; else if(v == "team_CTF_blueflag") MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_CTF; - else if(v == "td_generator") + else if(v == "td_generator" || v == "monster_swarm") MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_TD; else if(v == "target_assault_roundend") MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_ASSAULT; -- 2.39.2