Skip to content

Commit 706ce68

Browse files
committed
Allow to choose the hidden question
1 parent d76ee4b commit 706ce68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

game.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def start(self, length=0):
5454
length = int(length)
5555
if length < 2:
5656
length = random.randint(2, 10)
57-
if length > 10:
57+
if length > 10 and length != 64:
5858
length = 10
5959
except Exception as e:
6060
length = random.randint(2, 10)

0 commit comments

Comments
 (0)