mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- added an inventory check to A_KeenDie so that it still works if a patch repurposes a pickup item that may end up in the player's inventory.
This commit is contained in:
parent
9a8e724761
commit
883a6ffe3a
1 changed files with 7 additions and 2 deletions
|
@ -69,11 +69,16 @@ extend class Actor
|
|||
while (mo = Actor(it.Next(true)))
|
||||
{
|
||||
if (mo.health > 0 && mo != self)
|
||||
{
|
||||
// Added check for Dehacked and repurposed inventory items.
|
||||
let inv = Inventory(mo);
|
||||
if (inv == null || inv.Owner == null)
|
||||
{
|
||||
// other Keen not dead
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
Door_Open(doortag, 16);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue