From 2b1c6524a85aadf4cec402ac7089d7bb017f7a2c Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Tue, 6 Sep 2022 15:16:08 +1200 Subject: [PATCH] Fix gun animation (#11044) --- Content.Client/Weapons/Ranged/Systems/GunSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs index d28e06bfa3..69cd91284c 100644 --- a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs @@ -282,6 +282,7 @@ public sealed partial class GunSystem : SharedGunSystem _animPlayer.Play(ent, anim, "muzzle-flash"); var light = EnsureComp(uid); + light.NetSyncEnabled = false; light.Enabled = true; light.Color = Color.FromHex("#cc8e2b"); light.Radius = 2f;