add SMF_PRECISE flag to mbf21 A_SeekTracer, for accuracy

This commit is contained in:
Xaser Acheron 2022-01-12 23:22:09 -06:00 committed by Christoph Oelckers
parent 40a5c4c1c5
commit efbb31fa39

View file

@ -505,7 +505,7 @@ extend class Weapon
deprecated("2.3", "for Dehacked use only") deprecated("2.3", "for Dehacked use only")
void MBF21_SeekTracer(double threshold, double turnmax) void MBF21_SeekTracer(double threshold, double turnmax)
{ {
A_SeekerMissile(threshold, turnmax); // args get truncated to ints here, but it's close enough A_SeekerMissile(threshold, turnmax, flags: SMF_PRECISE); // args get truncated to ints here, but it's close enough
} }
} }