mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- 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)
This commit is contained in:
parent
9f168e29e2
commit
5a076c1f32
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue