- Fixed: Editing the player (thing #1) with DeHacked would remove its MF2_PUSHWALL flag.

SVN r3740 (trunk)
This commit is contained in:
Randy Heit 2012-07-06 03:04:06 +00:00
parent 9757492b7a
commit dc641766d3

View file

@ -1232,6 +1232,8 @@ static int PatchThing (int thingy)
// If MF_COUNTKILL is set, make sure the other standard monster flags are
// set, too. And vice versa.
if (thingy != 1) // don't mess with the player's flags
{
if (info->flags & MF_COUNTKILL)
{
info->flags2 |= MF2_PUSHWALL | MF2_MCROSS | MF2_PASSMOBJ;
@ -1242,6 +1244,7 @@ static int PatchThing (int thingy)
info->flags2 &= ~(MF2_PUSHWALL | MF2_MCROSS);
info->flags3 &= ~MF3_ISMONSTER;
}
}
// Everything that's altered here gets the CANUSEWALLS flag, just in case
// it calls P_Move().
info->flags4 |= MF4_CANUSEWALLS;