From 5a076c1f32f4cbf5fb6b6c900abab1d03129acf1 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Fri, 16 Mar 2012 00:41:11 +0000 Subject: [PATCH] - Fixed: The distance parameter for A_RadiusThrust was defined as fixed, when the parameter passed to P_RadiusAttack is just a regular int. SVN r3443 (trunk) --- src/thingdef/thingdef_codeptr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thingdef/thingdef_codeptr.cpp b/src/thingdef/thingdef_codeptr.cpp index d568edb61..d2ff8dda7 100644 --- a/src/thingdef/thingdef_codeptr.cpp +++ b/src/thingdef/thingdef_codeptr.cpp @@ -783,7 +783,7 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_RadiusThrust) { ACTION_PARAM_START(3); ACTION_PARAM_INT(force, 0); - ACTION_PARAM_FIXED(distance, 1); + ACTION_PARAM_INT(distance, 1); ACTION_PARAM_BOOL(affectSource, 2); ACTION_PARAM_INT(fullthrustdistance, 3);