From 46e877a2ee57217d08dfcb1ca69ab76676683701 Mon Sep 17 00:00:00 2001 From: Y0SH1M4S73R Date: Wed, 10 Nov 2021 22:12:42 -0500 Subject: [PATCH] makes the color matrix editor log all color edits (#62717) --- 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)