mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 23:32:04 +00:00
- Fixed: A_CustomMissile's pitch argument is an angle, not an int.
SVN r3909 (scripting)
This commit is contained in:
parent
aade32a749
commit
83480fd7f3
1 changed files with 1 additions and 1 deletions
|
@ -989,7 +989,7 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_CustomMissile)
|
|||
PARAM_INT_OPT (spawnofs_xy) { spawnofs_xy = 0; }
|
||||
PARAM_ANGLE_OPT (angle) { angle = 0; }
|
||||
PARAM_INT_OPT (flags) { flags = 0; }
|
||||
PARAM_INT_OPT (pitch) { pitch = 0; }
|
||||
PARAM_ANGLE_OPT (pitch) { pitch = 0; }
|
||||
|
||||
int aimmode = flags & CMF_AIMMODE;
|
||||
|
||||
|
|
Loading…
Reference in a new issue