From 66bcbe724c0f2b133518d0d0159e444b3e01d29d Mon Sep 17 00:00:00 2001 From: Seris02 <49109742+Seris02@users.noreply.github.com> Date: Fri, 11 Aug 2023 20:22:18 +0800 Subject: [PATCH] fixes the vanity_copy_to proc which broke with the new marking customization (#6769) --- modular_chomp/code/modules/client/preferences.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modular_chomp/code/modules/client/preferences.dm b/modular_chomp/code/modules/client/preferences.dm index 24b0e35cf9..0a4a27976b 100644 --- a/modular_chomp/code/modules/client/preferences.dm +++ b/modular_chomp/code/modules/client/preferences.dm @@ -173,12 +173,11 @@ for(var/M in body_markings) priority += 1 var/datum/sprite_accessory/marking/mark_datum = body_marking_styles_list[M] - var/mark_color = "[body_markings[M]]" for(var/BP in mark_datum.body_parts) var/obj/item/organ/external/O = character.organs_by_name[BP] if(O) - O.markings[M] = list("color" = mark_color, "datum" = mark_datum, "priority" = priority) + O.markings[M] = list("color" = body_markings[M][BP]["color"], "datum" = mark_datum, "priority" = priority, "on" = body_markings[M][BP]["on"]) character.markings_len = priority var/list/last_descriptors = list()