From 9536991f2e514af0ec96797747a205f18a5ea381 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Wed, 13 Feb 2019 12:26:50 -0500 Subject: [PATCH] Holograms can no longer become sentient animals (#42715) --- code/modules/events/sentience.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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