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