
* Update ccrole.py * listener * Update audiotrivia.py * Update audiotrivia.py * Update audiotrivia.py * Update chat.py * Update dad.py * Update exclusiverole.py * Update leaver.py * Update reactrestrict.py * Update stealemoji.py * Update lseen.py * Update __init__.py * Update qrinvite.py * Update qrinvite.py * Depreaction * Depreaction warning * Listener * Update chat.py
10 lines
214 B
Python
10 lines
214 B
Python
from .hangman import Hangman
|
|
from redbot.core import data_manager
|
|
|
|
|
|
def setup(bot):
|
|
n = Hangman(bot)
|
|
data_manager.bundled_data_path(n)
|
|
bot.add_cog(n)
|
|
bot.add_listener(n.on_react, "on_reaction_add")
|