From: Mario Date: Fri, 16 Feb 2018 04:46:51 +0000 (+1000) Subject: Use locals to save chainsaw's speed X-Git-Tag: xonotic-v0.8.5~2314 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=4ab1d5e64223181a0cef1745ca2b2d1bede0607c;p=xonotic%2Fxonotic-data.pk3dir.git Use locals to save chainsaw's speed --- diff --git a/qcsrc/common/mutators/mutator/overkill/rpc.qc b/qcsrc/common/mutators/mutator/overkill/rpc.qc index b38e0ee52..fc83febf1 100644 --- a/qcsrc/common/mutators/mutator/overkill/rpc.qc +++ b/qcsrc/common/mutators/mutator/overkill/rpc.qc @@ -48,15 +48,15 @@ void W_RocketPropelledChainsaw_Think(entity this) return; } - this.cnt = vlen(this.velocity); - this.wait = this.cnt * sys_frametime; - this.pos1 = normalize(this.velocity); + float myspeed = vlen(this.velocity); + float myspeed_accel = myspeed * sys_frametime; + vector mydir = normalize(this.velocity); - tracebox(this.origin, this.mins, this.maxs, this.origin + this.pos1 * (2 * this.wait), MOVE_NORMAL, this); + tracebox(this.origin, this.mins, this.maxs, this.origin + mydir * (2 * myspeed_accel), MOVE_NORMAL, this); if(IS_PLAYER(trace_ent)) Damage (trace_ent, this, this.realowner, WEP_CVAR(rpc, damage2), this.projectiledeathtype, this.origin, normalize(this.origin - trace_ent.origin) * WEP_CVAR(rpc, force)); - this.velocity = this.pos1 * (this.cnt + (WEP_CVAR(rpc, speedaccel) * sys_frametime)); + this.velocity = mydir * (myspeed + (WEP_CVAR(rpc, speedaccel) * sys_frametime)); UpdateCSQCProjectile(this); this.nextthink = time; @@ -105,7 +105,6 @@ void W_RocketPropelledChainsaw_Attack (Weapon thiswep, entity actor, .entity wea SUB_SetFade (flash, time, 0.1); flash.effects = EF_ADDITIVE | EF_FULLBRIGHT | EF_LOWPRECISION; W_AttachToShotorg(actor, weaponentity, flash, '5 0 0'); - missile.pos1 = missile.velocity; MUTATOR_CALLHOOK(EditProjectile, actor, missile); }