Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Commit bb956db

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)