mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
- Fixed: The mask didn't incorporate RGF_MISSILES, causing it to fail.
This commit is contained in:
parent
c28c0b8f0b
commit
87207bdb6d
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue