From efbb31fa39abf8e363c1330fac151d9792b4bd32 Mon Sep 17 00:00:00 2001 From: Xaser Acheron Date: Wed, 12 Jan 2022 23:22:09 -0600 Subject: [PATCH] add SMF_PRECISE flag to mbf21 A_SeekTracer, for accuracy --- wadsrc/static/zscript/actors/mbf21.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/actors/mbf21.zs b/wadsrc/static/zscript/actors/mbf21.zs index 598cc21dd..ec5f7e4aa 100644 --- a/wadsrc/static/zscript/actors/mbf21.zs +++ b/wadsrc/static/zscript/actors/mbf21.zs @@ -505,7 +505,7 @@ extend class Weapon deprecated("2.3", "for Dehacked use only") 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 } } \ No newline at end of file