From 87207bdb6d5c02c332c30ab941cba19951cc546e Mon Sep 17 00:00:00 2001 From: MajorCooke Date: Sun, 9 Nov 2014 00:16:10 -0600 Subject: [PATCH] - Fixed: The mask didn't incorporate RGF_MISSILES, causing it to fail. --- src/thingdef/thingdef_codeptr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thingdef/thingdef_codeptr.cpp b/src/thingdef/thingdef_codeptr.cpp index 2732337c7..ff7fb9dd2 100644 --- a/src/thingdef/thingdef_codeptr.cpp +++ b/src/thingdef/thingdef_codeptr.cpp @@ -4678,7 +4678,7 @@ enum RadiusGiveFlags RGF_OBJECTS = 1 << 3, RGF_VOODOO = 1 << 4, RGF_CORPSES = 1 << 5, - RGF_MASK = 63, + RGF_MASK = 2111, RGF_NOTARGET = 1 << 6, RGF_NOTRACER = 1 << 7, RGF_NOMASTER = 1 << 8,