From 64e992f64876c78d2235f78f0f8bbe1562da8f1a Mon Sep 17 00:00:00 2001
From: Randy Heit <rheit@zdoom.fake>
Date: Tue, 28 Feb 2012 02:19:57 +0000
Subject: [PATCH] - Remove seeker missile restriction from
 A_JumpIfTracerCloser.

SVN r3398 (trunk)
---
 src/thingdef/thingdef_codeptr.cpp | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/src/thingdef/thingdef_codeptr.cpp b/src/thingdef/thingdef_codeptr.cpp
index 18700c166..d568edb61 100644
--- a/src/thingdef/thingdef_codeptr.cpp
+++ b/src/thingdef/thingdef_codeptr.cpp
@@ -648,11 +648,7 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_JumpIfCloser)
 
 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)