From: Mario Date: Fri, 21 Sep 2018 01:57:44 +0000 (+1000) Subject: Tweak diameter range for automatic duel support X-Git-Tag: xonotic-v0.8.5~1809^2~4 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=233228cc89400ba7d27aaa588116f3e30dad5e69;p=xonotic%2Fxonotic-data.pk3dir.git Tweak diameter range for automatic duel support --- diff --git a/qcsrc/common/mapinfo.qh b/qcsrc/common/mapinfo.qh index 245b3ed7b..bddefb22d 100644 --- a/qcsrc/common/mapinfo.qh +++ b/qcsrc/common/mapinfo.qh @@ -487,7 +487,7 @@ CLASS(Duel, Gametype) } METHOD(Duel, m_isAlwaysSupported, bool(Gametype this, int spawnpoints, float diameter)) { - return (diameter < 4096); + return (diameter < 8192); } ENDCLASS(Duel) REGISTER_GAMETYPE(DUEL, NEW(Duel));