From: Mario <mario@smbclan.net>
Date: Sat, 13 May 2017 04:35:43 +0000 (+1000)
Subject: Ultra minor cleanup
X-Git-Tag: xonotic-v0.8.5~2788
X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9288005342442b0ae6c85bfd832db180f524cd13;p=xonotic%2Fxonotic-data.pk3dir.git

Ultra minor cleanup
---

diff --git a/qcsrc/common/physics/movetypes/movetypes.qc b/qcsrc/common/physics/movetypes/movetypes.qc
index aef76671f..407a703cf 100644
--- a/qcsrc/common/physics/movetypes/movetypes.qc
+++ b/qcsrc/common/physics/movetypes/movetypes.qc
@@ -382,21 +382,13 @@ void _Movetype_LinkEdict(entity this, bool touch_triggers)  // SV_LinkEdict
 
 	if(this.flags & FL_ITEM)
 	{
-		mi.x -= 15;
-		mi.y -= 15;
-		mi.z -= 1;
-		ma.x += 15;
-		ma.y += 15;
-		ma.z += 1;
+		mi -= '15 15 1';
+		ma += '15 15 1';
 	}
 	else
 	{
-		mi.x -= 1;
-		mi.y -= 1;
-		mi.z -= 1;
-		ma.x += 1;
-		ma.y += 1;
-		ma.z += 1;
+		mi -= '1 1 1';
+		ma += '1 1 1';
 	}
 
 	this.absmin = mi;