From: Mario Date: Thu, 2 Apr 2015 09:19:19 +0000 (+1100) Subject: Don't link them to server's ticrate (seems to work a tiny bit better) X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9366d7dd0db64f96665ccb4571354f5add6583b7;p=xonotic%2Fxonotic-data.pk3dir.git Don't link them to server's ticrate (seems to work a tiny bit better) --- diff --git a/qcsrc/server/t_items.qc b/qcsrc/server/t_items.qc index 5ab03645f..b114b4ffc 100644 --- a/qcsrc/server/t_items.qc +++ b/qcsrc/server/t_items.qc @@ -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()