i can't believe kevin made me code

im taking severe offense to this
This commit is contained in:
Fabian
2021-03-05 19:55:53 +01:00
parent c4eebe56a5
commit 7f38564838
13 changed files with 318 additions and 23 deletions
+4 -1
View File
@@ -2,7 +2,10 @@
..()
//Mind updates
sync_mind()
mind.show_memory(src, 0)
//ambition port start
if(mind.memory || mind.antag_datums)
to_chat(src, "<i>[mind.show_memory()]</i>")
//ambition port end
//Round specific stuff
if(SSticker.mode)
+5 -1
View File
@@ -441,7 +441,11 @@
set category = "IC"
set desc = "View your character's notes memory."
if(mind)
mind.show_memory(src)
//ambition port start
var/datum/browser/popup = new(src, "memory", "Memory and Notes")
popup.set_content(mind.show_memory())
popup.open()
//ambition port
else
to_chat(src, "You don't have a mind datum for some reason, so you can't look at your notes, if you had any.")