diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm
index 401d0a139cd..593efc2560b 100644
--- a/code/modules/mob/living/carbon/human/human.dm
+++ b/code/modules/mob/living/carbon/human/human.dm
@@ -820,6 +820,16 @@
if(R.fields["criminal"] == "*Execute*")
to_chat(usr, "Unable to modify the sec status of a person with an active Execution order. Use a security computer instead.")
else
+ if(ishuman(usr))
+ var/mob/living/carbon/human/U = usr
+ R.fields["comments"] += "Set to [setcriminal] by [U.get_authentification_name()] ([U.get_assignment()]) on [current_date_string] [worldtime2text()]
"
+ if(isrobot(usr))
+ var/mob/living/silicon/robot/U = usr
+ R.fields["comments"] += "Set to [setcriminal] by [U.name] ([U.modtype] [U.braintype]) on [current_date_string] [worldtime2text()]
"
+ if(isAI(usr))
+ var/mob/living/silicon/ai/U = usr
+ R.fields["comments"] += "Set to [setcriminal] by [U.name] (artificial intelligence) on [current_date_string] [worldtime2text()]
"
+
R.fields["criminal"] = setcriminal
spawn()