X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fphysics%2Fmovetypes%2Fmovetypes.qc;h=33c56216a5d71b8ad053f9c3a05236af65ae5509;hb=d271f27a5ac351a3a7b39636932f6d661492be1d;hp=2c9c5894bfecfdbfefe763562e840cf4f05f0233;hpb=4ce007470c1496a3ff4574075281e6912019e533;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/physics/movetypes/movetypes.qc b/qcsrc/common/physics/movetypes/movetypes.qc index 2c9c5894b..33c56216a 100644 --- a/qcsrc/common/physics/movetypes/movetypes.qc +++ b/qcsrc/common/physics/movetypes/movetypes.qc @@ -321,7 +321,7 @@ void _Movetype_Impact(entity this, entity oth) // SV_Impact { other = oth; - WITH(entity, self, this, this.move_touch()); + WITHSELF(this, this.move_touch()); other = oldother; } @@ -330,7 +330,7 @@ void _Movetype_Impact(entity this, entity oth) // SV_Impact { other = this; - WITH(entity, self, oth, oth.move_touch()); + WITHSELF(oth, oth.move_touch()); other = oldother; } @@ -360,7 +360,7 @@ void _Movetype_LinkEdict_TouchAreaGrid(entity this) // SV_LinkEdict_TouchAreaGr trace_plane_dist = 0; trace_ent = this; - WITH(entity, self, it, it.move_touch()); + WITHSELF(it, it.move_touch()); } });