Remove Featured Image from posts in specific category?

Something like this ought to work, in your single.php or whatever:

if(is_single() && has_term('specials', 'my_taxonomy', $post)){
    // do something not thumbnail-related
} else {
    the_post_thumbnail();
}

Not sure what your taxonomy is.