public async Task Blacklist(ulong id, string name = "Undefined", [Remainder] string reason = "No reason given.")
        {
            Artist a = await _ADB.FindArtist(Context.User.Id);

            if (a != null)
            {
                await _LDB.NewListing(id, name, reason);

                IGuild usr = await Context.Client.GetGuildAsync(_SS.USRGuildId);

                ITextChannel usrc = await usr.GetTextChannelAsync(_SS.LogId);

                await usrc.SendMessageAsync($"{Context.User.Mention} blacklisted <@{id}> for `{reason}`(id).");
                await ReplyAsync(":thumbsup:");
            }
        }