From 01e7859e1f5224d0c9abbc179d2c87bee060aa3f Mon Sep 17 00:00:00 2001 From: Xaser Acheron Date: Fri, 9 Aug 2024 06:57:26 -0500 Subject: [PATCH] fix MBF21 A_RadiusDamage crash/broken 'distance' arg --- wadsrc/static/zscript/actors/attacks.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/actors/attacks.zs b/wadsrc/static/zscript/actors/attacks.zs index 188a9c0640..db9da6f35b 100644 --- a/wadsrc/static/zscript/actors/attacks.zs +++ b/wadsrc/static/zscript/actors/attacks.zs @@ -626,7 +626,7 @@ extend class Actor } deprecated("2.3", "For Dehacked use only") - void A_RadiusDamage(int dam, double dist) + void A_RadiusDamage(int dam, int dist) { A_Explode(dam, dist); }