From 1313bbefef4aef8397a94e07dd8830bbe517152b Mon Sep 17 00:00:00 2001 From: LegendaryGuard Date: Thu, 30 Jun 2022 02:07:56 +0200 Subject: [PATCH] Don't set 2nd parameter of Net_LinkEntity more than 0 --- qcsrc/common/turrets/sv_turrets.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2