summaryrefslogtreecommitdiff
path: root/board/static.py
diff options
context:
space:
mode:
Diffstat (limited to 'board/static.py')
-rw-r--r--board/static.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/static.py b/board/static.py
index d6b48dd..5d4b4ba 100644
--- a/board/static.py
+++ b/board/static.py
@@ -28,7 +28,7 @@ class Tile(IntEnum):
LevelSpecs = {
- Level.BEGINNER: ( 9, 9, 10 ),
- Level.INTERMEDIATE: ( 16, 16, 40 ),
- Level.EXPERT: ( 30, 16, 99 )
+ Level.BEGINNER: ( 9, 9, 10, "Aloittelija"),
+ Level.INTERMEDIATE: ( 16, 16, 40, "Keskivaikea"),
+ Level.EXPERT: ( 30, 16, 99, "Edistynyt")
}