From c6f85670b2fe52e2a11725e5a3f9ff8dd206879b Mon Sep 17 00:00:00 2001 From: Dip Date: Thu, 17 Sep 2020 23:12:47 -0300 Subject: [PATCH] DUH. --- code/game/objects/structures/mirror.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/mirror.dm b/code/game/objects/structures/mirror.dm index 389f38f4..9403f59c 100644 --- a/code/game/objects/structures/mirror.dm +++ b/code/game/objects/structures/mirror.dm @@ -31,8 +31,8 @@ H.client.prefs.copy_to(user) H.real_name = H.client.prefs.real_name H.mind.name = H.real_name //Makes sure to change their mind name to their real name. - H.dna.update_dna_identity() //This makes sure their DNA is updated. SSquirks.AssignQuirks(H, H.client, TRUE, FALSE, H.job, FALSE)//This Assigns the selected character's quirks + H.dna.update_dna_identity() //This makes sure their DNA is updated. var/obj/item/card/id/idCard = user.get_idcard() //Time to change their ID card as well if they have one. if (idCard != null) idCard.update_label(H.real_name, idCard.assignment)