diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm
index ecde71425f..a158aff70b 100644
--- a/code/modules/mob/living/carbon/human/examine.dm
+++ b/code/modules/mob/living/carbon/human/examine.dm
@@ -369,6 +369,11 @@
if(print_flavor_text()) msg += "[print_flavor_text()]\n"
+ // VOREStation Start
+ if(config.allow_Metadata && client)
+ msg += "OOC Notes: \[View\]\n"
+ // VOREStation End
+
msg += "*---------*"
if (pose)
if( findtext(pose,".",lentext(pose)) == 0 && findtext(pose,"!",lentext(pose)) == 0 && findtext(pose,"?",lentext(pose)) == 0 )
diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm
index 47853089cf..6e4fd8697a 100644
--- a/code/modules/mob/living/carbon/human/human.dm
+++ b/code/modules/mob/living/carbon/human/human.dm
@@ -359,6 +359,11 @@
if(href_list["item"])
handle_strip(href_list["item"],usr)
+ // VOREStation Start
+ if(href_list["ooc_notes"])
+ src.Examine_OOC()
+ // VOREStation End
+
if (href_list["criminal"])
if(hasHUD(usr,"security"))