Fix PYWHEEL file (missing semicolons).
This commit is contained in:
parent
3ba606caa4
commit
c722d32c88
3 changed files with 34 additions and 24 deletions
|
|
@ -331,10 +331,15 @@ Class YnykronImpact : Actor
|
|||
if ( tracer && (tracer.Health <= 0) )
|
||||
{
|
||||
if ( tracer.player ) PlayerGone.FeckOff(tracer);
|
||||
// poof away
|
||||
tracer.bINVISIBLE = true;
|
||||
tracer.A_ChangeLinkFlags(false); // remove from blockmap, should guarantee archviles not raising this
|
||||
IDontFeelSoGood.DeletThis(tracer); // ensures corpse is deleted too
|
||||
if ( tracer.FindState("YnykronDeath",true) )
|
||||
tracer.SetStateLabel("YnykronDeath"); // dedicated state
|
||||
else
|
||||
{
|
||||
// poof away manually
|
||||
tracer.bINVISIBLE = true;
|
||||
tracer.A_ChangeLinkFlags(false); // remove from blockmap, should guarantee archviles not raising this
|
||||
IDontFeelSoGood.DeletThis(tracer); // ensures corpse is deleted too
|
||||
}
|
||||
}
|
||||
}
|
||||
if ( YnykronShot(master) )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue