- Fixed: SXF_CLEARCALLERSPECIAL cleared the spawned actor's special instead of the caller.

This commit is contained in:
Major Cooke 2018-12-30 10:08:07 -06:00 committed by Christoph Oelckers
parent 7c8cdf80d1
commit 8d9d71f55f
1 changed files with 5 additions and 5 deletions

View File

@ -307,11 +307,11 @@ extend class Actor
if (flags & SXF_CLEARCALLERSPECIAL)
{
self.special = 0;
mo.args[0] = 0;
mo.args[1] = 0;
mo.args[2] = 0;
mo.args[3] = 0;
mo.args[4] = 0;
self.args[0] = 0;
self.args[1] = 0;
self.args[2] = 0;
self.args[3] = 0;
self.args[4] = 0;
}
if (flags & SXF_TRANSFERSTENCILCOL)
{