- Duke: fixed setup of purely scripted enemies,

Some band-aid is still needed for the time being.
This commit is contained in:
Christoph Oelckers 2023-02-09 17:34:25 +01:00
parent 17392fe400
commit 6c77d1c39e
4 changed files with 10 additions and 5 deletions

View file

@ -149,6 +149,7 @@ DDukeActor* spawninit_d(DDukeActor* actj, DDukeActor* act, TArray<DDukeActor*>*
switch (act->spr.picnum)
{
default:
if (!badguy(act) || commonEnemySetup(act, actj))
CallInitialize(act);
break;
case FOF:

View file

@ -61,6 +61,7 @@ DDukeActor* spawninit_r(DDukeActor* actj, DDukeActor* act, TArray<DDukeActor*>*
{
default:
default_case:
if (!badguy(act) || commonEnemySetup(act, actj))
CallInitialize(act);
break;
case RTILE_RRTILE7936:

Binary file not shown.

View file

@ -263,10 +263,13 @@ class DukeActor : CoreActor native
self.scale = (0, 0);
self.ChangeStat(STAT_MISC);
}
else
{
self.clipdist = 10;
self.ownerActor = self;
self.ChangeStat(STAT_ACTOR);
}
}
}