From a268f6a365897fe6c1b59f616c96001e25ee46f4 Mon Sep 17 00:00:00 2001 From: Rak Laptudirm Date: Thu, 26 Dec 2024 20:03:37 +0530 Subject: [PATCH] chore: fix an oopsie with the chess color string representations --- games/src/chess/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/games/src/chess/mod.rs b/games/src/chess/mod.rs index 5012de2..eb32404 100644 --- a/games/src/chess/mod.rs +++ b/games/src/chess/mod.rs @@ -29,8 +29,8 @@ game_details!( Files: A, B, C, D, E, F, G, H; Ranks: 1 First, 2 Second, 3 Third, 4 Fourth, 5 Fifth, 6 Sixth, 7 Seventh, 8 Eighth; Pieces: Pawn "p", Knight "n", Bishop "b", Rook "r", Queen "q", King "k";; - Colors: White "x" ("P", "N", "B", "R", "Q", "K"), - Black "o" ("p", "n", "b", "r", "q", "k"); + Colors: White "w" ("P", "N", "B", "R", "Q", "K"), + Black "b" ("p", "n", "b", "r", "q", "k"); ); impl Square {