]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/physics/movetypes/push.qc
s/world/NULL/
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / physics / movetypes / push.qc
index b3cfb875da28a318c6585bd1a91df2f8e1ff64ef..0d03bfff8fa2018878ddde41ef3bde61c6983350 100644 (file)
@@ -148,7 +148,7 @@ void _Movetype_Physics_Pusher(entity this, float dt)  // SV_Physics_Pusher
        {
                this.move_nextthink = 0;
                this.move_time = time;
-               other = world;
-               WITHSELF(this, this.move_think());
+               other = NULL;
+               this.move_think(this);
        }
 }