Index: wp-includes/template.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- wp-includes/template.php	(revision 1bad16273e06d8506bb7b9ecfadc9f35c9d030e4)
+++ wp-includes/template.php	(revision )
@@ -241,8 +241,15 @@
 
 	if ( ! empty( $term->slug ) ) {
 		$taxonomy = $term->taxonomy;
+
+		$taxonomy_object = get_taxonomy( $taxonomy );
+
 		$templates[] = "taxonomy-$taxonomy-{$term->slug}.php";
 		$templates[] = "taxonomy-$taxonomy.php";
+
+		foreach($taxonomy_object->object_type AS $post_type){
+			$templates[] = "archive-$post_type.php";
+		}
 	}
 	$templates[] = 'taxonomy.php';
 
