From c9b2d1ab35f3eec844107cc6302331a15e34b59c Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 11 Nov 2021 16:16:08 +0000 Subject: [PATCH] [MIRROR] Makes the color matrix editor log all color edits [MDB IGNORE] (#9384) * makes the color matrix editor log all color edits (#62717) * Makes the color matrix editor log all color edits Co-authored-by: Y0SH1M4S73R --- code/modules/admin/view_variables/color_matrix_editor.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/view_variables/color_matrix_editor.dm b/code/modules/admin/view_variables/color_matrix_editor.dm index 1f1634a284b..e61b54ff433 100644 --- a/code/modules/admin/view_variables/color_matrix_editor.dm +++ b/code/modules/admin/view_variables/color_matrix_editor.dm @@ -115,7 +115,7 @@ INITIALIZE_IMMEDIATE(/atom/movable/screen/color_matrix_proxy_view) /datum/color_matrix_editor/proc/on_confirm() var/atom/target_atom = target?.resolve() if(istype(target_atom)) - target_atom.add_atom_colour(current_color, ADMIN_COLOUR_PRIORITY) + target_atom.vv_edit_var("color", current_color) /datum/color_matrix_editor/proc/wait() while(!closed)