From 3cc71b21056619026df243c7888d0ff151600a02 Mon Sep 17 00:00:00 2001
From: bones_was_here <bones_was_here@xonotic.au>
Date: Fri, 24 Feb 2023 09:08:59 +1000
Subject: [PATCH] WarpZoneLib_BoxTouchesBrush: fix whitespace

---
 qcsrc/lib/warpzone/common.qc | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/qcsrc/lib/warpzone/common.qc b/qcsrc/lib/warpzone/common.qc
index 0c85d4a088..d7cb5632b4 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)
-- 
2.39.5