diff --git a/code/game/verbs/who.dm b/code/game/verbs/who.dm
index aa81c91c..8850445f 100644
--- a/code/game/verbs/who.dm
+++ b/code/game/verbs/who.dm
@@ -158,7 +158,7 @@
eventwho += "\n Current Event Hosts([num_event_online]):\n" + eventmsg
if(num_duty_online)
- dutymsg = "\n Current Duty Officers([num_event_online]):\n" + dutymsg
+ dutymsg = "\n Current Duty Officers([num_duty_online]):\n" + dutymsg
msg = "Current Admins ([num_admins_online]):\n" + msg + "\n Current Moderators([num_mods_online]):\n" + modmsg + eventwho + "\n Current Developers([num_devs_online]):\n" + devmsg + dutymsg
src << msg
\ No newline at end of file
diff --git a/code/modules/aurora/duty_officer/duty officer.dm b/code/modules/aurora/duty_officer/duty officer.dm
index 86aecfe9..08a1ece0 100644
--- a/code/modules/aurora/duty_officer/duty officer.dm
+++ b/code/modules/aurora/duty_officer/duty officer.dm
@@ -146,6 +146,14 @@
M.equip_if_possible(pda, slot_belt)
+ //Implant because access
+ var/obj/item/weapon/implant/loyalty/imp = new/obj/item/weapon/implant/loyalty(M)
+ imp.imp_in = M
+ imp.implanted = 1
+ var/datum/organ/external/affected = M.organs_by_name["head"]
+ affected.implants += imp
+ imp.part = affected
+
var/obj/item/weapon/card/id/W = new(M)
W.name = "[M.real_name]'s ID Card"
W.icon_state = "centcom"