From 233228cc89400ba7d27aaa588116f3e30dad5e69 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 21 Sep 2018 11:57:44 +1000 Subject: [PATCH] Tweak diameter range for automatic duel support --- qcsrc/common/mapinfo.qh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.39.2