From ac01edd440afae7a382b601e6d6e98e17e26cef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Dunant?= Date: Wed, 22 Dec 2021 16:02:19 +0100 Subject: [PATCH] Fix wrong shirt colors in the character selection --- dGame/UserManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dGame/UserManager.cpp b/dGame/UserManager.cpp index 5418e9f3..405f4b0b 100644 --- a/dGame/UserManager.cpp +++ b/dGame/UserManager.cpp @@ -582,7 +582,7 @@ uint32_t FindCharShirtID(uint32_t shirtColor, uint32_t shirtStyle) { } case 3: { - shirtID = shirtStyle >= 35 ? 5808 : SHIRT_DARK_GREEN; + shirtID = shirtStyle >= 35 ? 5748 : SHIRT_DARK_GREEN; break; } @@ -617,7 +617,7 @@ uint32_t FindCharShirtID(uint32_t shirtColor, uint32_t shirtStyle) { } case 11: { - shirtID = shirtStyle >= 35 ? 5802 : SHIRT_MEDIUM_BLUE; + shirtID = shirtStyle >= 35 ? 5790 : SHIRT_MEDIUM_BLUE; break; }