Skip to content

Commit c5127ed

Browse files
committed
Fixed a cosmetic bug with default color on ally/self/foe preview
1 parent d5676ec commit c5127ed

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Change Log
2+
## [3.16.3](https://github.com/ProjectCeleste/Celeste.Launcher/releases/tag/v3.16.3) (2025-10-11)
3+
- Fixed a cosmetic bug with default color on ally/self/foe preview.
4+
25
## [3.16.2](https://github.com/ProjectCeleste/Celeste.Launcher/releases/tag/v3.16.2) (2025-10-10)
36
- New feature: Color picker for customizing in-game player colors.
47

Celeste_Launcher_Gui/Windows/SetPlayerColorWindow.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,15 +262,15 @@ private string GetDefaultPreview(string playerNum)
262262
{
263263
if (playerNum == "Ally")
264264
{
265-
return "C9";
265+
return "C11";
266266
}
267267
else if (playerNum == "Self")
268268
{
269-
return "C10";
269+
return "C9";
270270
}
271271
else if (playerNum == "Foe")
272272
{
273-
return "C11";
273+
return "C10";
274274
}
275275
else
276276
{

0 commit comments

Comments
 (0)