diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 64ce9b26be74..5929648d06d4 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -892,7 +892,7 @@ if(!skillcheck(user, SKILL_MEDICAL, SKILL_MEDICAL_MEDIC)) // Removing your own holocard when you are not trained if(user == src && holo_card_color) - if(tgui_alert(usr, "Are you sure you want to reset your own holocard?", "Resetting Holocard", list("Yes", "No")) != "Yes") + if(tgui_alert(user, "Are you sure you want to reset your own holocard?", "Resetting Holocard", list("Yes", "No")) != "Yes") return holo_card_color = null to_chat(user, SPAN_NOTICE("You reset your holocard."))