From 2681f84a69bae235a21ce7a40ea8a61acd833c10 Mon Sep 17 00:00:00 2001 From: Henri215 <77684085+Henri215@users.noreply.github.com> Date: Mon, 17 Oct 2022 18:50:07 -0300 Subject: [PATCH] Fixes #13967 AI crewmember hologram now works properly (#19389) * AI hologram now gets id photo instead of null flaticon * better this way * *coughs * updated comment --- code/modules/mob/living/silicon/ai/ai.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/silicon/ai/ai.dm b/code/modules/mob/living/silicon/ai/ai.dm index 2431d4b668f..e9bd2265a5e 100644 --- a/code/modules/mob/living/silicon/ai/ai.dm +++ b/code/modules/mob/living/silicon/ai/ai.dm @@ -987,8 +987,8 @@ GLOBAL_LIST_INIT(ai_verbs_default, list( if("Crew Member") var/personnel_list[] = list() - for(var/datum/data/record/t in GLOB.data_core.locked)//Look in data core locked. - personnel_list["[t.fields["name"]]: [t.fields["rank"]]"] = t.fields["image"]//Pull names, rank, and image. + for(var/datum/data/record/t in GLOB.data_core.general)//Look in data core general. + personnel_list["[t.fields["name"]]: [t.fields["rank"]]"] = t.fields["photo"]//Pull names, rank, and id photo. if(personnel_list.len) input = input("Select a crew member:") as null|anything in personnel_list