From 8e43007b83e42eb4ea8f4b8d1a9b59defd4a946b Mon Sep 17 00:00:00 2001 From: S34N <12197162+S34NW@users.noreply.github.com> Date: Sun, 19 May 2024 12:42:02 +0200 Subject: [PATCH] fix this (#25524) --- code/datums/mind.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index 26d4ba5fa50..c055734bbe5 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -515,7 +515,7 @@ alert("Not before round-start!", "Alert") return - var/list/out = list("[name][(current && (current.real_name != name))?" (as [current.real_name])" : ""]") + var/list/out = list("[name][name][(current && (current.real_name != name))?" (as [current.real_name])" : ""]") out.Add("Mind currently owned by key: [key] [active ? "(synced)" : "(not synced)"]") out.Add("Assigned role: [assigned_role]. Edit") out.Add("Factions and special roles:") @@ -592,6 +592,7 @@ out.Add(gen_objective_text(admin = TRUE)) out.Add("Add objective
") out.Add("Announce objectives
") + out.Add("") usr << browse(out.Join("
"), "window=edit_memory[src];size=500x500") /datum/mind/Topic(href, href_list)