From f443b53ce7eba32cb5f2303114dda5f2d269911b Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Tue, 14 Dec 2010 19:46:36 +0100 Subject: [PATCH] be a bit more conservative regarding the warpzone fix --- qcsrc/warpzonelib/server.qc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qcsrc/warpzonelib/server.qc b/qcsrc/warpzonelib/server.qc index 153ca6141..f4141c8a3 100644 --- a/qcsrc/warpzonelib/server.qc +++ b/qcsrc/warpzonelib/server.qc @@ -617,6 +617,8 @@ void WarpZone_StartFrame() { if(e.solid != SOLID_NOT) // not spectating? continue; + if(e.movetype != MOVETYPE_NOCLIP && e.movetype != MOVETYPE_FLY) // not spectating? (this is to catch observers) + continue; self = WarpZone_Find(e.origin + e.mins, e.origin + e.maxs); if(!self) continue; -- 2.39.2