- Fixed: APowerInvisibility::CommonInit() cleared the wrong flag.

SVN r1443 (trunk)
This commit is contained in:
Randy Heit 2009-02-24 03:47:32 +00:00
parent f188577bb5
commit 7a887416f6
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
//===========================================================================