]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Don't link them to server's ticrate (seems to work a tiny bit better)
authorMario <zacjardine@y7mail.com>
Thu, 2 Apr 2015 09:19:19 +0000 (20:19 +1100)
committerMario <zacjardine@y7mail.com>
Thu, 2 Apr 2015 09:19:19 +0000 (20:19 +1100)
qcsrc/server/t_items.qc

index 5ab03645fc633675f58e36ffa00fde836b55c4ad..b114b4ffc5c86641a406412539ce96fc42ec2fa5 100644 (file)
@@ -34,8 +34,6 @@
 #ifdef CSQC
 void ItemDraw()
 {
-       Movetype_Physics_MatchServer(false);
-
        if(self.move_flags & FL_ONGROUND)
        {
                self.oldorigin = self.move_origin;
@@ -62,11 +60,13 @@ void ItemDraw()
                        //self.move_origin = '0 0 8' + self.oldorigin + '0 0 4' * sin(time * 3);
                }
        }
+
+       Movetype_Physics_NoMatchServer();
 }
 
 void ItemDrawSimple()
 {
-       Movetype_Physics_MatchServer(false);
+       Movetype_Physics_NoMatchServer();
 }
 
 void Item_PreDraw()