From: MirceaKitsune Date: Sun, 19 Sep 2010 11:29:06 +0000 (+0300) Subject: Fix settemp_for_type all. I have NO idea why that number needs to be 16383 and can... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9ff852b297586618272f7021f1ba54cd87da6deb;p=voretournament%2Fvoretournament.git Fix settemp_for_type all. I have NO idea why that number needs to be 16383 and can't be 8192 --- diff --git a/data/qcsrc/common/mapinfo.qh b/data/qcsrc/common/mapinfo.qh index ccb32361..3a135c57 100644 --- a/data/qcsrc/common/mapinfo.qh +++ b/data/qcsrc/common/mapinfo.qh @@ -11,7 +11,7 @@ float MAPINFO_TYPE_KEYHUNT = 512; float MAPINFO_TYPE_CTS = 1024; float MAPINFO_TYPE_CA = 2048; float MAPINFO_TYPE_RPG = 4096; -float MAPINFO_TYPE_ALL = 8192; // this has to include all above bits +float MAPINFO_TYPE_ALL = 16383; // this has to include all above bits float MAPINFO_FEATURE_WEAPONS = 1; // not defined for minstagib-only maps