mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 22:19:30 +01:00
Holograms can no longer become sentient animals (#42715)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user