diff options
author | Armaan Bhojwani <me@armaanb.net> | 2021-01-26 00:05:52 -0500 |
---|---|---|
committer | Armaan Bhojwani <me@armaanb.net> | 2021-01-26 00:05:52 -0500 |
commit | da004a969e475c8a39eb9c652b0706b5b4a92a08 (patch) | |
tree | 78c78fe1c927eb7b042e5aaebb137045251e87d5 | |
parent | 3937712aa3cbfb479afcbb62528507c04290f654 (diff) | |
download | tall.bot-da004a969e475c8a39eb9c652b0706b5b4a92a08.tar.gz |
Reduce amount of information returned
-rwxr-xr-x | tallbot.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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() |