From 40a5c4c1c5ce0e9966d137c25283dc7af04cfb0f Mon Sep 17 00:00:00 2001 From: Xaser Acheron Date: Wed, 12 Jan 2022 23:19:17 -0600 Subject: [PATCH] fix mbf21 A_SeekTracer not working (arg type shenanigans) --- wadsrc/static/zscript/actors/mbf21.zs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wadsrc/static/zscript/actors/mbf21.zs b/wadsrc/static/zscript/actors/mbf21.zs index 2a703feac..598cc21dd 100644 --- a/wadsrc/static/zscript/actors/mbf21.zs +++ b/wadsrc/static/zscript/actors/mbf21.zs @@ -503,9 +503,9 @@ extend class Weapon // needed to call A_SeekerMissile with proper defaults. deprecated("2.3", "for Dehacked use only") - void MBF21_SeekTracer(int threshold, int turnmax) + void MBF21_SeekTracer(double threshold, double turnmax) { - A_SeekerMissile(threshold, turnmax); + A_SeekerMissile(threshold, turnmax); // args get truncated to ints here, but it's close enough } } \ No newline at end of file