From 6aa1753f3cfa9c0e101094e8372407f918d0595b Mon Sep 17 00:00:00 2001 From: Vicacrov <49321394+Vicacrov@users.noreply.github.com> Date: Tue, 26 Mar 2024 18:09:16 +0100 Subject: [PATCH] fixes usr real quick --- code/modules/mob/living/carbon/human/human.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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."))