public async Task AddGamerProfile(string platform, [Remainder] string url)
        {
            UserAccount account = UserAccounts.GetAccount(Context.User);

            if (account.AddProfile(platform, url))
            {
                await Context.Channel.SendMessageAsync($"{Context.User.Mention}'s {platform} profile set to {url}");
            }
            else
            {
                await Context.Channel.SendMessageAsync("Failed to set profile.");
            }
        }