diff --git a/main.py b/main.py index 23e80e7..f32ce45 100644 --- a/main.py +++ b/main.py @@ -259,7 +259,10 @@ class Player: def message(self, bot, text): """Manda un messaggio privato al giocatore.""" - bot.sendMessage(self.tid, text, parse_mode=ParseMode.MARKDOWN) + try: + bot.sendMessage(self.tid, text, parse_mode=ParseMode.MARKDOWN) + except TelegramError: + pass def kill(self, bot, game): """Uccidi il giocatore."""