From 9ff852b297586618272f7021f1ba54cd87da6deb Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Sun, 19 Sep 2010 14:29:06 +0300 Subject: [PATCH] Fix settemp_for_type all. I have NO idea why that number needs to be 16383 and can't be 8192 --- data/qcsrc/common/mapinfo.qh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2