From ca3ef3b0f304c53fab77cd89556f27a046598b8f Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 26 Apr 2021 18:02:47 +0100 Subject: [PATCH] X button --- code/modules/client/preferences.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 1a9a9a6cbf..6a5dd3b8d5 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -522,12 +522,13 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(marking_type) dat += APPEARANCE_CATEGORY_COLUMN dat += "

[GLOB.all_mutant_parts[marking_type]]

" // give it the appropriate title for the type of marking + dat += "Add marking" // list out the current markings you have if(length(features[marking_type])) dat += "" for(var/list/marking_list in features[marking_type]) var/actual_name = GLOB.bodypart_names[num2text(marking_list[1])] // get the actual name from the bitflag representing the part the marking is applied to - dat += "" + dat += "" dat += "
[marking_list[2]] - [actual_name] ˄ ˅
[marking_list[2]] - [actual_name] ˄ ˅ X
" for(var/mutant_part in GLOB.all_mutant_parts)