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
|
@ -70,8 +70,13 @@ extend class Actor
|
||||||
{
|
{
|
||||||
if (mo.health > 0 && mo != self)
|
if (mo.health > 0 && mo != self)
|
||||||
{
|
{
|
||||||
// other Keen not dead
|
// Added check for Dehacked and repurposed inventory items.
|
||||||
return;
|
let inv = Inventory(mo);
|
||||||
|
if (inv == null || inv.Owner == null)
|
||||||
|
{
|
||||||
|
// other Keen not dead
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Door_Open(doortag, 16);
|
Door_Open(doortag, 16);
|
||||||
|
|
Loading…
Reference in a new issue