/mob/living/carbon/human/Topic(href, href_list)
. = ..()
if(href_list["skyrat_ooc_notes"])
if(client)
var/str = "[src]'s OOC Notes :
ERP : [client.prefs.erppref] | Non-Con : [client.prefs.nonconpref] | Vore : [client.prefs.vorepref]"
if(client.prefs.extremepref == "Yes")
str += "
Extreme content : [client.prefs.extremepref] | Extreme content harm : [client.prefs.extremeharm]"
str += "
[html_encode(client.prefs.skyrat_ooc_notes)]"
var/datum/browser/popup = new(usr, "[name]'s ooc info", "[name]'s OOC Information", 500, 200)
popup.set_content(text("[][]", "[name]'s OOC information", replacetext(str, "\n", "
")))
popup.open()
return