diff options
| author | 2019-05-30 20:27:23 -0400 | |
|---|---|---|
| committer | 2019-05-30 20:27:23 -0400 | |
| commit | 484f61b04c0cfa5c02a2047c1f3fc7f34418d212 (patch) | |
| tree | 88258e0b987f9bc31bef53f5afcf90074eb4233b /bot/seasons/evergreen/showprojects.py | |
| parent | Merge pull request #211 from RohanRadia/master (diff) | |
| parent | Fix snake draw command (diff) | |
Merge pull request #200 from python-discord/docstring-lint-change
Docstring lint change
Diffstat (limited to 'bot/seasons/evergreen/showprojects.py')
| -rw-r--r-- | bot/seasons/evergreen/showprojects.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bot/seasons/evergreen/showprojects.py b/bot/seasons/evergreen/showprojects.py index d6223690..37809b33 100644 --- a/bot/seasons/evergreen/showprojects.py +++ b/bot/seasons/evergreen/showprojects.py @@ -17,7 +17,6 @@ class ShowProjects(commands.Cog): @commands.Cog.listener() async def on_message(self, message): """Adds reactions to posts in #show-your-projects""" - reactions = ["\U0001f44d", "\U00002764", "\U0001f440", "\U0001f389", "\U0001f680", "\U00002b50", "\U0001f6a9"] if (message.channel.id == Channels.show_your_projects and message.author.bot is False @@ -25,11 +24,10 @@ class ShowProjects(commands.Cog): for reaction in reactions: await message.add_reaction(reaction) - self.lastPoster = message.author.id + self.lastPoster = message.author.id def setup(bot): """Show Projects Reaction Cog""" - bot.add_cog(ShowProjects(bot)) log.info("ShowProjects cog loaded") |