2020-04-02 15:07:43 -04:00
|
|
|
from .hunting import Hunting
|
|
|
|
|
|
2020-08-26 17:57:43 +01:00
|
|
|
__red_end_user_data_statement__ = (
|
|
|
|
|
"This cog does not persistently store end user data. "
|
|
|
|
|
"This cog does store discord IDs as needed for operation. "
|
|
|
|
|
"This cog does store user stats for the cog such as their score. "
|
|
|
|
|
"Users may remove their own content without making a data removal request."
|
|
|
|
|
"This cog does not support data requests, "
|
|
|
|
|
"but will respect deletion requests."
|
|
|
|
|
)
|
|
|
|
|
|
2020-04-02 15:07:43 -04:00
|
|
|
|
|
|
|
|
async def setup(bot):
|
|
|
|
|
bot.add_cog(Hunting(bot))
|