mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- Fixed: APowerInvisibility::CommonInit() cleared the wrong flag.
SVN r1443 (trunk)
This commit is contained in:
parent
f188577bb5
commit
7a887416f6
1 changed files with 1 additions and 1 deletions
|
@ -553,7 +553,7 @@ void APowerInvisibility::CommonInit()
|
|||
Owner->flags |= MF_SHADOW;
|
||||
// transfer seeker missile blocking (but only if the owner does not already have this flag
|
||||
if (!(Owner->flags5 & MF5_CANTSEEK) && (flags5 & MF5_CANTSEEK)) Owner->flags5 |= MF5_CANTSEEK;
|
||||
else flags &=~MF5_CANTSEEK;
|
||||
else flags5 &= ~MF5_CANTSEEK;
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
|
|
Loading…
Reference in a new issue