This commit is contained in:
Christoph Oelckers 2014-09-19 09:15:33 +02:00
commit c2377ff8e1
1 changed files with 4 additions and 0 deletions

View File

@ -1843,6 +1843,10 @@ static bool InitSpawnedItem(AActor *self, AActor *mo, int flags)
// If this is a missile or something else set the target to the originator
mo->target = originator ? originator : self;
}
if (flags & SIXF_SETMASTER)
{
mo->master = originator;
}
if (flags & SIXF_TRANSFERSCALE)
{
mo->scaleX = self->scaleX;