From 3ce4e2ad17eb0c8689a1dbccfc403540d56ef6c7 Mon Sep 17 00:00:00 2001 From: Mloc-Argent Date: Sat, 6 Jul 2013 22:20:13 +0100 Subject: [PATCH] Fixes #2559 Changes Add-Note and Notes verb to be under the IC category, instead of OOC. Signed-off-by: Mloc-Argent --- code/modules/mob/mob.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index bd1258cd94..b52f73f866 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -298,7 +298,7 @@ var/list/slot_equipment_priority = list( \ /mob/verb/memory() set name = "Notes" - set category = "OOC" + set category = "IC" if(mind) mind.show_memory(src) else @@ -306,7 +306,7 @@ var/list/slot_equipment_priority = list( \ /mob/verb/add_memory(msg as message) set name = "Add Note" - set category = "OOC" + set category = "IC" msg = copytext(msg, 1, MAX_MESSAGE_LEN) msg = sanitize(msg)