From: terencehill Date: Sat, 9 Mar 2019 18:44:03 +0000 (+0100) Subject: Rename a variable X-Git-Tag: xonotic-v0.8.5~1582 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=8d77db6941bd0fadd449db69259fdd1c339c0183;p=xonotic%2Fxonotic-data.pk3dir.git Rename a variable --- 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); });