mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- Remove seeker missile restriction from A_JumpIfTracerCloser.
SVN r3398 (trunk)
This commit is contained in:
parent
0fc6d9a0c6
commit
64e992f648
1 changed files with 1 additions and 5 deletions
|
@ -647,13 +647,9 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_JumpIfCloser)
|
||||||
}
|
}
|
||||||
|
|
||||||
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_JumpIfTracerCloser)
|
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_JumpIfTracerCloser)
|
||||||
{
|
|
||||||
// Is there really any reason to limit this to seeker missiles?
|
|
||||||
if (self->flags2 & MF2_SEEKERMISSILE)
|
|
||||||
{
|
{
|
||||||
DoJumpIfCloser(self->tracer, PUSH_PARAMINFO);
|
DoJumpIfCloser(self->tracer, PUSH_PARAMINFO);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_JumpIfMasterCloser)
|
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_JumpIfMasterCloser)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue