diff --git a/delojza.py b/delojza.py index 32bbd35..07f7910 100755 --- a/delojza.py +++ b/delojza.py @@ -265,7 +265,10 @@ class DelojzaBot: if message.chat.title not in self.protected_chats: self.logger.info("Ignoring {} in chat {} due to protected hashtags: {}..." .format(urls, message.chat.title, hashtags)) - message.reply_text(choice(["No.", "Nein", "Nope", ":(", "Error: Cannot.", "Fail."])) + replies = ["Nein", "Nope", ":(", "Error: Cannot.", + "Error: {}".format(self.markov.make_sentence() if self.markov else "Cannot."), + "Failed: {}".format(self.markov.make_sentence() if self.markov else "Cannot.")] + message.reply_text(choice(replies)) return self.last_hashtags = None