diff --git a/venture/game.py b/venture/game.py index 44a6ce4..b4f7048 100644 --- a/venture/game.py +++ b/venture/game.py @@ -1,6 +1,5 @@ import requests from random import randrange -from collections import namedtuple MAX_CATEGORIES = 28100 @@ -17,7 +16,7 @@ class Game: self.players[sid] = Contestant(signature) def load_clues(self): - while len(self.categories) < 12: + while len(self.categories) < 6: category_id = randrange(MAX_CATEGORIES) r = requests.get( 'https://jservice.io/api/category?id=%d' % category_id)