Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.

Commit bb956db

Browse files
committed
Fix case issue with spanish and russian dictionaries
1 parent 50d418d commit bb956db

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

server/codenames/game.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
DICTIONARIES["Greek"] = FILE_ROOT + "/greek.txt"
1919
DICTIONARIES["Italian"] = FILE_ROOT + "/italian.txt"
2020
DICTIONARIES["Portuguese"] = FILE_ROOT + "/portuguese.txt"
21-
DICTIONARIES["Russian"] = FILE_ROOT + "/Russian.txt"
22-
DICTIONARIES["Spanish"] = FILE_ROOT + "/Spanish.txt"
21+
DICTIONARIES["Russian"] = FILE_ROOT + "/russian.txt"
22+
DICTIONARIES["Spanish"] = FILE_ROOT + "/spanish.txt"
2323
DICTIONARIES["Cards Against Humanity"] = FILE_ROOT + "/cards_against_humanity.txt"
2424

2525
# colors per team

0 commit comments

Comments
 (0)