- Fixed: Heretic powered firemace balls didn't seek their target.

This commit is contained in:
Braden Obrzut 2016-02-09 23:33:31 -05:00
parent f33993dcb5
commit 65b70dedaa

View file

@ -662,7 +662,7 @@ DEFINE_ACTION_FUNCTION(AActor, A_DeathBallImpact)
}
else
{ // Seek
self->angle = self->AngleTo(target);
angle = self->AngleTo(target);
newAngle = true;
}
}