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 += "| [marking_list[2]] - [actual_name] | ˄ ˅ |
"
+ dat += "| [marking_list[2]] - [actual_name] | ˄ ˅ X |
"
dat += "
"
for(var/mutant_part in GLOB.all_mutant_parts)