From: bones_was_here Date: Thu, 23 Feb 2023 23:08:59 +0000 (+1000) Subject: WarpZoneLib_BoxTouchesBrush: fix whitespace X-Git-Tag: xonotic-v0.8.6~98^2~3 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3cc71b21056619026df243c7888d0ff151600a02;p=xonotic%2Fxonotic-data.pk3dir.git WarpZoneLib_BoxTouchesBrush: fix whitespace --- diff --git a/qcsrc/lib/warpzone/common.qc b/qcsrc/lib/warpzone/common.qc index 0c85d4a08..d7cb5632b 100644 --- a/qcsrc/lib/warpzone/common.qc +++ b/qcsrc/lib/warpzone/common.qc @@ -137,21 +137,21 @@ float WarpZoneLib_BoxTouchesBrush_Recurse() float WarpZoneLib_BoxTouchesBrush(vector mi, vector ma, entity e, entity ig) { - float f, s; + float f, s; - if(!e.modelindex || e.warpzone_isboxy) - return 1; + if(!e.modelindex || e.warpzone_isboxy) + return 1; - s = e.solid; - e.solid = SOLID_BSP; - WarpZoneLib_BoxTouchesBrush_mins = mi; - WarpZoneLib_BoxTouchesBrush_maxs = ma; - WarpZoneLib_BoxTouchesBrush_ent = e; - WarpZoneLib_BoxTouchesBrush_ignore = ig; - f = WarpZoneLib_BoxTouchesBrush_Recurse(); - e.solid = s; + s = e.solid; + e.solid = SOLID_BSP; + WarpZoneLib_BoxTouchesBrush_mins = mi; + WarpZoneLib_BoxTouchesBrush_maxs = ma; + WarpZoneLib_BoxTouchesBrush_ent = e; + WarpZoneLib_BoxTouchesBrush_ignore = ig; + f = WarpZoneLib_BoxTouchesBrush_Recurse(); + e.solid = s; - return f; + return f; } entity WarpZone_Find(vector mi, vector ma)