From: LegendaryGuard Date: Thu, 30 Jun 2022 00:07:56 +0000 (+0200) Subject: Don't set 2nd parameter of Net_LinkEntity more than 0 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=1313bbefef4aef8397a94e07dd8830bbe517152b;p=xonotic%2Fxonotic-data.pk3dir.git Don't set 2nd parameter of Net_LinkEntity more than 0 --- diff --git a/qcsrc/common/turrets/sv_turrets.qc b/qcsrc/common/turrets/sv_turrets.qc index c5bbbebc95..e2754bd328 100644 --- a/qcsrc/common/turrets/sv_turrets.qc +++ b/qcsrc/common/turrets/sv_turrets.qc @@ -1194,7 +1194,7 @@ void turret_use(entity this, entity actor, entity trigger) void turret_link(entity this) { - Net_LinkEntity(this, true, 0.5, turret_send); + Net_LinkEntity(this, true, 0, turret_send); setthink(this, turret_think); this.nextthink = time; this.tur_head.effects = EF_NODRAW;