diff --git a/code/modules/events/sentience.dm b/code/modules/events/sentience.dm index f1b2d53fc55..c72ed57a109 100644 --- a/code/modules/events/sentience.dm +++ b/code/modules/events/sentience.dm @@ -43,7 +43,7 @@ GLOBAL_LIST_INIT(high_priority_sentience, typecacheof(list( candidates = get_candidates(ROLE_ALIEN, null, ROLE_ALIEN) // find our chosen mob to breathe life into - // Mobs have to be simple animals, mindless and on station + // Mobs have to be simple animals, mindless, on station, and NOT holograms. // prioritize starter animals that people will recognise @@ -56,7 +56,7 @@ GLOBAL_LIST_INIT(high_priority_sentience, typecacheof(list( var/turf/T = get_turf(L) if(!T || !is_station_level(T.z)) continue - if((L in GLOB.player_list) || L.mind) + if((L in GLOB.player_list) || L.mind || (L.flags_1 & HOLOGRAM_1)) continue if(is_type_in_typecache(L, GLOB.high_priority_sentience)) hi_pri += L