Update bot.py

This commit is contained in:
Flowiee 2019-10-14 20:03:35 +02:00 committed by GitHub
parent 85b4d671c4
commit ef8955bf49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
bot.py
View file

@ -36,7 +36,7 @@ from errors import (NoGameInChatError, LobbyClosedError, AlreadyJoinedError,
from internationalization import _, __, user_locale, game_locales
from results import (add_call_bluff, add_choose_color, add_draw, add_gameinfo,
add_no_game, add_not_started, add_other_cards, add_pass,
add_card, add_mode_classic, add_mode_fast, add_mode_wild)
add_card, add_mode_classic, add_mode_fast, add_mode_wild, add_mode_text)
from shared_vars import gm, updater, dispatcher
from simple_commands import help_handler
from start_bot import start_bot
@ -595,6 +595,7 @@ def reply_to_query(bot, update):
add_mode_classic(results)
add_mode_fast(results)
add_mode_wild(results)
add_mode_text(results)
else:
add_not_started(results)