From c6af57af3213ec10d2f2f2d0b1adfccec0f88e53 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Sun, 26 Jun 2011 07:56:32 +0200 Subject: [PATCH] warpzonelib: don't teleport MOVETYPE_FOLLOW stuff --- qcsrc/warpzonelib/server.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/warpzonelib/server.qc b/qcsrc/warpzonelib/server.qc index 1ec660221..27b96c291 100644 --- a/qcsrc/warpzonelib/server.qc +++ b/qcsrc/warpzonelib/server.qc @@ -134,7 +134,7 @@ void WarpZone_Touch (void) return; // FIXME needs a better check to know what is safe to teleport and what not - if(other.movetype == MOVETYPE_NONE) + if(other.movetype == MOVETYPE_NONE || other.movetype == MOVETYPE_FOLLOW) return; if(WarpZoneLib_ExactTrigger_Touch()) -- 2.39.2