From 8d77db6941bd0fadd449db69259fdd1c339c0183 Mon Sep 17 00:00:00 2001
From: terencehill <piuntn@gmail.com>
Date: Sat, 9 Mar 2019 19:44:03 +0100
Subject: [PATCH] Rename a variable

---
 qcsrc/common/ent_cs.qc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/qcsrc/common/ent_cs.qc b/qcsrc/common/ent_cs.qc
index 23790b5e4..070197d7d 100644
--- a/qcsrc/common/ent_cs.qc
+++ b/qcsrc/common/ent_cs.qc
@@ -195,8 +195,8 @@ ENTCS_PROP(FRAGS, true, frags, ENTCS_SET_NORMAL,
 	void entcs_think(entity this)
 	{
 		this.nextthink = time + 0.033333333333;  // TODO: increase this to like 0.15 once the client can do smoothing
-		entity o = this.owner;
-		FOREACH(EntCSProps, it.m_check(this, o),
+		entity player = this.owner;
+		FOREACH(EntCSProps, it.m_check(this, player),
 		{
 			this.SendFlags |= BIT(it.m_id);
 		});
-- 
2.39.5