From: Rudolf Polzer Date: Tue, 14 Dec 2010 18:46:36 +0000 (+0100) Subject: be a bit more conservative regarding the warpzone fix X-Git-Tag: xonotic-v0.1.0preview~29 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f443b53ce7eba32cb5f2303114dda5f2d269911b;p=xonotic%2Fxonotic-data.pk3dir.git be a bit more conservative regarding the warpzone fix --- 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;