From: Armaan Bhojwani Date: Tue, 26 Jan 2021 05:05:52 +0000 (-0500) Subject: Reduce amount of information returned X-Git-Url: https://git.armaanb.net/?p=tall.bot.git;a=commitdiff_plain;h=da004a969e475c8a39eb9c652b0706b5b4a92a08 Reduce amount of information returned --- diff --git a/tallbot.py b/tallbot.py index 4cd6f89..fba1c16 100755 --- a/tallbot.py +++ b/tallbot.py @@ -82,9 +82,9 @@ class TallBot(discord.Client): query = create_query(message.content) more_info = tell_more(message.content, message.author) if query: - await message.channel.send(wiki_sum(query, 2, message.author)) + await message.channel.send(wiki_sum(query, 1, message.author)) elif more_info: - await message.channel.send(wiki_sum(more_info, 8, message.author)) + await message.channel.send(wiki_sum(more_info, 6, message.author)) def main(): prep_database()