}
METHOD(ClanArena, m_isAlwaysSupported, bool(Gametype this, int spawnpoints, float diameter))
{
- if(spawnpoints >= 8 && diameter > 4096)
+ if(spawnpoints >= 8 && diameter > 3250)
return true;
return false;
}
}
METHOD(Duel, m_isAlwaysSupported, bool(Gametype this, int spawnpoints, float diameter))
{
- return (diameter < 16384);
+ return (diameter < 3250);
}
METHOD(Duel, m_isForcedSupported, bool(Gametype this))
{
}
METHOD(FreezeTag, m_isAlwaysSupported, bool(Gametype this, int spawnpoints, float diameter))
{
- if(spawnpoints >= 8 && diameter > 4096)
+ if(spawnpoints >= 8 && diameter > 3250)
return true;
return false;
}
}
METHOD(TeamDeathmatch, m_isAlwaysSupported, bool(Gametype this, int spawnpoints, float diameter))
{
- if(spawnpoints >= 8 && diameter > 4096)
+ if(spawnpoints >= 8 && diameter > 3250)
return true;
return false;
}