From 6988ea6624358c6f69ae32ca6eb151ef3b49d642 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Sun, 29 Nov 2015 23:25:32 -0500 Subject: [PATCH] Missing brackets --- 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 c6f1f7e3e38..fa1d21e3bd5 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -280,7 +280,7 @@ stat("Absorbed DNA", mind.changeling.absorbedcount) if(mind.nation) - stat("Nation Name", "[mind.nation.current_name ? "[mind.nation.current_name]" : "mind.nation.default_name"]") + stat("Nation Name", "[mind.nation.current_name ? "[mind.nation.current_name]" : "[mind.nation.default_name]"]") stat("Nation Leader", "[mind.nation.current_leader ? "[mind.nation.current_leader]" : "None"]") stat("Nation Heir", "[mind.nation.heir ? "[mind.nation.heir]" : "None"]")