X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fphysics%2Fmovetypes%2Ftoss.qc;fp=qcsrc%2Fcommon%2Fphysics%2Fmovetypes%2Ftoss.qc;h=4821e34f6ac8929ae610ddc00ab35cd188223ce6;hb=3d52c1d33d80f8789bfbd97ee54e292ca06b5a9e;hp=db3ff72daa84551704c9930ed0955e9f9a03e13d;hpb=0a38b87755f94ff09b4e5668d2392fd3a8c62d8b;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/physics/movetypes/toss.qc b/qcsrc/common/physics/movetypes/toss.qc index db3ff72da..4821e34f6 100644 --- a/qcsrc/common/physics/movetypes/toss.qc +++ b/qcsrc/common/physics/movetypes/toss.qc @@ -8,13 +8,13 @@ void _Movetype_Physics_Toss(entity this, float dt) // SV_Physics_Toss { UNSET_ONGROUND(this); } - else if (!this.move_groundentity) + else if (!this.groundentity) { return; } - else if (this.move_suspendedinair && wasfreed(this.move_groundentity)) + else if (this.move_suspendedinair && wasfreed(this.groundentity)) { - this.move_groundentity = NULL; + this.groundentity = NULL; return; } } @@ -78,7 +78,7 @@ void _Movetype_Physics_Toss(entity this, float dt) // SV_Physics_Toss if (trace_plane_normal.z > 0.7 && d < bstop && d > -bstop) { SET_ONGROUND(this); - this.move_groundentity = trace_ent; + this.groundentity = trace_ent; this.velocity = '0 0 0'; this.avelocity = '0 0 0'; } @@ -93,7 +93,7 @@ void _Movetype_Physics_Toss(entity this, float dt) // SV_Physics_Toss if (trace_plane_normal.z > 0.7) { SET_ONGROUND(this); - this.move_groundentity = trace_ent; + this.groundentity = trace_ent; if (trace_ent.solid == SOLID_BSP) this.move_suspendedinair = true; this.velocity = '0 0 0';