From e887cfcba72ebd01ec9d5033f59383dbd7700c9d Mon Sep 17 00:00:00 2001 From: HonusBot Date: Sun, 29 Dec 2019 01:25:09 +0100 Subject: [PATCH] Fixed commands --- inline.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/inline.py b/inline.py index 44eb3a2..0945b26 100644 --- a/inline.py +++ b/inline.py @@ -80,12 +80,12 @@ class InlineBot: query = update.inline_query.query results = list() if not query: - results.append(self.makeResult("Pony", "yay!", self.callRequest("pony", senderid, query))) - results.append(self.makeResult("Clop", "clopclop", self.callRequest("clop", senderid, query))) - results.append(self.makeResult("Furry", "DON'T!", self.callRequest("furry", senderid, query))) - results.append(self.makeResult("Loli", "say hi to the police!", self.callRequest("loli", senderid, query))) - results.append(self.makeResult("Yiff", "yiff", self.callRequest("yiff", senderid, query))) - results.append(self.makeResult("Lewd", "lolies", self.callRequest("lolies", senderid, query))) + results.append(self.makeResult("Pony", "yay, ponies!", self.callRequest("pony", senderid, query))) + results.append(self.makeResult("Clop", "NSFW ponies", self.callRequest("clop", senderid, query))) + results.append(self.makeResult("Furry", "Furries", self.callRequest("furry", senderid, query))) + results.append(self.makeResult("Loli", "Cute lolis", self.callRequest("loli", senderid, query))) + results.append(self.makeResult("Yiff", "Yiff", self.callRequest("yiff", senderid, query))) + results.append(self.makeResult("Lewd", "Say hi to the police", self.callRequest("lewd", senderid, query))) else: results.append(self.makeResult("Cancer", "Search cancer about " + query, self.callRequest("cancer", senderid, query))) context.bot.answer_inline_query(update.inline_query.id, results, 1, False)