diff --git a/Assets/_PROJECT/Components/TwoHandedBow/TwoHandedBowNetworkManager.cs b/Assets/_PROJECT/Components/TwoHandedBow/TwoHandedBowNetworkManager.cs index 2aba689f..2c0b9d65 100644 --- a/Assets/_PROJECT/Components/TwoHandedBow/TwoHandedBowNetworkManager.cs +++ b/Assets/_PROJECT/Components/TwoHandedBow/TwoHandedBowNetworkManager.cs @@ -29,7 +29,15 @@ namespace _PROJECT.Multiplayer.NewBow if (_notch == null) Debug.LogError("Notch not found"); - CreateArrowServer(); + //CreateArrowServer(); + } + + public override void OnOwnershipServer(NetworkConnection prevOwner) + { + base.OnOwnershipServer(prevOwner); + + if (Owner.IsValid) + CreateArrowServer(); } public override void OnStartClient()