/mob/living/silicon/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]
[client.prefs.skyrat_ooc_notes]"
usr << browse(text("
[][]", "[name]'s OOC information", replacetext(str, "\n", "
")), text("window=[];size=500x200", "[name]'s ooc info"))
onclose(usr, "[name]'s ooc info")
/mob/living/silicon/verb/robot_nom(var/mob/living/T in oview(1))
set name = "Eat Mob"
set category = "Vore"
set desc = "Allows you to eat someone."
if(!CHECK_BITFIELD(T.vore_flags,DEVOURABLE))
to_chat(src, "System error: Unauthorized operation.")
return
return feed_grabbed_to_self(src,T)