diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm
index d32d020fe0e..eda9f32784e 100644
--- a/code/modules/admin/admin.dm
+++ b/code/modules/admin/admin.dm
@@ -62,7 +62,7 @@ var/global/nologevent = 0
body += "SM - "
body += "[admin_jump_link(M)]\]
"
if(ishuman(M) && M.mind)
- body += "HM"
+ body += "HM"
body += "Mob type: [M.type]
"
if(M.client)
if(M.client.related_accounts_cid.len)
diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm
index e594bbc164f..749341b92b1 100644
--- a/code/modules/admin/topic.dm
+++ b/code/modules/admin/topic.dm
@@ -1675,22 +1675,23 @@
if(!check_rights(R_ADMIN))
return
- var/mob/M = locate(href_list["CentcommReply"])
+ var/mob/M = locateUID(href_list["CentcommReply"])
usr.client.admin_headset_message(M, "Centcomm")
else if(href_list["SyndicateReply"])
if(!check_rights(R_ADMIN))
return
- var/mob/M = locate(href_list["SyndicateReply"])
+ var/mob/M = locateUID(href_list["SyndicateReply"])
usr.client.admin_headset_message(M, "Syndicate")
else if(href_list["HeadsetMessage"])
if(!check_rights(R_ADMIN))
return
- var/mob/M = locate(href_list["HeadsetMessage"])
+ var/mob/M = locateUID(href_list["HeadsetMessage"])
usr.client.admin_headset_message(M)
+
else if(href_list["EvilFax"])
if(!check_rights(R_ADMIN))
return