From 5410c71280b0f3acf8c6f7a68d1e757708885161 Mon Sep 17 00:00:00 2001 From: miniduikboot Date: Mon, 5 Jul 2021 20:06:21 +0200 Subject: [PATCH] Correct ColorType array When creating this array for the update, I used the wrong array. Oops! Turns out 5 of these colors aren't actually in the game. --- src/Impostor.Api/Innersloth/Customization/ColorType.cs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/Impostor.Api/Innersloth/Customization/ColorType.cs b/src/Impostor.Api/Innersloth/Customization/ColorType.cs index e4fd432..570071c 100644 --- a/src/Impostor.Api/Innersloth/Customization/ColorType.cs +++ b/src/Impostor.Api/Innersloth/Customization/ColorType.cs @@ -14,16 +14,11 @@ Brown = 9, Cyan = 10, Lime = 11, - Mahogany = 12, + Maroon = 12, Rose = 13, Banana = 14, Gray = 15, Tan = 16, - Lilac = 17, - Aqua = 18, - Cobalt = 19, - Barf = 20, - Salmon = 21, - Chocolate = 22, + Coral = 17, } } -- 2.39.5