diff options
author | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-30 09:08:20 +0200 |
---|---|---|
committer | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-30 09:08:20 +0200 |
commit | 70df24894d1cb0f2897442c64a3b7e460ed6ff78 (patch) | |
tree | a73bd3554e6ad42b8c91c6e5aed7a224ad4118d8 /board/static.py | |
parent | db3fd859e42fb3d6b3c1f98473b54e91d78b74e7 (diff) |
Adding level-info on statusline.
Diffstat (limited to 'board/static.py')
-rw-r--r-- | board/static.py | 6 |
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") } |