From 32a481a65b13f7f2b271f4084fb6fcf83022bfe1 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 21 May 2021 05:19:36 +0200 Subject: [PATCH] [MIRROR] Fix stupid casing where we have both icons/Testing and icons/testing (#5838) * Fix stupid casing where we have both icons/Testing and icons/testing (#59220) In this PR, mothblocks malds. * Fix stupid casing where we have both icons/Testing and icons/testing Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> --- code/datums/greyscale/_greyscale_config.dm | 2 +- icons/{Testing => testing}/greyscale_error.dmi | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename icons/{Testing => testing}/greyscale_error.dmi (100%) diff --git a/code/datums/greyscale/_greyscale_config.dm b/code/datums/greyscale/_greyscale_config.dm index caf27af0139..b602305600d 100644 --- a/code/datums/greyscale/_greyscale_config.dm +++ b/code/datums/greyscale/_greyscale_config.dm @@ -151,7 +151,7 @@ generated_icon.GetPixel(1, 1) generated_icons[icon_state] = generated_icon - var/icon/icon_bundle = icon('icons/Testing/greyscale_error.dmi') + var/icon/icon_bundle = icon('icons/testing/greyscale_error.dmi') for(var/icon_state in generated_icons) icon_bundle.Insert(generated_icons[icon_state], icon_state) diff --git a/icons/Testing/greyscale_error.dmi b/icons/testing/greyscale_error.dmi similarity index 100% rename from icons/Testing/greyscale_error.dmi rename to icons/testing/greyscale_error.dmi