public static void PlaySfxSpatially(SfxCatagory Catagory, int Index, Vector3 Pos, float Muffle) { if (PlayLocally) { Self.PlaySfxAt(Catagory, Index, Pos, Muffle); } if (PlayRemote) { Self.Rpc(nameof(PlaySfxAt), Catagory, Index, Pos, Muffle); } }