mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-14 00:21:34 +00:00
Fixed resetting of activation failed flag on pickup
https://forum.zdoom.org/viewtopic.php?t=56896
This commit is contained in:
parent
c22017f981
commit
478d72b37b
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@ class Inventory : Actor native
|
||||||
if (copy.bInitEffectFailed)
|
if (copy.bInitEffectFailed)
|
||||||
{
|
{
|
||||||
if (copy != self) copy.Destroy();
|
if (copy != self) copy.Destroy();
|
||||||
else bInitEffectFailed;
|
else bInitEffectFailed = false;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
// Handle owner-changing powerups
|
// Handle owner-changing powerups
|
||||||
|
|
Loading…
Reference in a new issue