diff --git a/gameloop.py b/gameloop.py index faea533..0347400 100644 --- a/gameloop.py +++ b/gameloop.py @@ -411,7 +411,6 @@ def game(send, notice, voice, devoice, get_event): error('Unknown event type: %s' % event) def start_game(rest): - expert = False if len(rest) == 0 or rest[0] == 'default': send('Adding the default CAH deck (A5DCM)') @@ -438,16 +437,12 @@ def game(send, notice, voice, devoice, get_event): elif rest[0] == 'empty': pass - elif rest[0] == 'expert': - expert = True - else: send('Unknown preset %s' % rest[0]) - if not expert: - limit_type = {limit_types.rounds: 'rounds', limit_types.points: 'points'}[limit.type] - send('Limit is %i %s, change with !limit' % (limit.number, limit_type)) - send('Once you are ready to start the game, everyone send !ready') + limit_type = {limit_types.rounds: 'rounds', limit_types.points: 'points'}[limit.type] + send('Limit is %i %s, change with !limit' % (limit.number, limit_type)) + send('Once you are ready to start the game, everyone send !ready') def no_game(): nonlocal players, bots, decks, limit, round_number, round_call_card, czar, card_choices