From a0c18ddfa816a9c6d47bd0b374cf81b76fc4d5dd Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Sat, 7 Sep 2013 15:05:24 +0200 Subject: Make spectators not collide with buildings and players --- src/game/bg_public.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/game/bg_public.h b/src/game/bg_public.h index 9355ac6..d24f105 100644 --- a/src/game/bg_public.h +++ b/src/game/bg_public.h @@ -1206,8 +1206,7 @@ qboolean BG_UpgradeAllowedInStage( upgrade_t upgrade, #define MASK_ALL (-1) #define MASK_SOLID (CONTENTS_SOLID) #define MASK_PLAYERSOLID (CONTENTS_SOLID|CONTENTS_PLAYERCLIP|CONTENTS_BODY) -//#define MASK_DEADSOLID (CONTENTS_SOLID|CONTENTS_PLAYERCLIP) -#define MASK_DEADSOLID MASK_PLAYERSOLID +#define MASK_DEADSOLID (CONTENTS_SOLID|CONTENTS_PLAYERCLIP) #define MASK_WATER (CONTENTS_WATER|CONTENTS_LAVA|CONTENTS_SLIME) #define MASK_OPAQUE (CONTENTS_SOLID|CONTENTS_SLIME|CONTENTS_LAVA) #define MASK_SHOT (CONTENTS_SOLID|CONTENTS_BODY) -- cgit