- 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 98cd9bd06d
commit edc84409e0

View file

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