Fix wrong shirt colors in the character selection

This commit is contained in:
Raphaël Dunant 2021-12-22 16:02:19 +01:00 committed by GitHub
parent 65b7f49c9b
commit ac01edd440
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}