mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- Fixed: Editing the player (thing #1) with DeHacked would remove its MF2_PUSHWALL flag.
SVN r3740 (trunk)
This commit is contained in:
parent
9757492b7a
commit
dc641766d3
1 changed files with 11 additions and 8 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue