Some checks are pending
Run pre-commit / Run pre-commit (push) Waiting to run
This commit introduces three new cogs to the Unbelievaboat module, enhancing its functionality and expanding gameplay options. The new cogs are integrated into the setup process, allowing for improved user engagement and interaction.
17 lines
519 B
Python
17 lines
519 B
Python
from .unbelievaboat import Unbelievaboat
|
|
from .investments import Investments
|
|
from .heist import Heist
|
|
from .business import Business
|
|
|
|
__red_end_user_data_statement__ = (
|
|
"This cog stores data attached to a users ID for intent of showing a balance.\n"
|
|
"It does not store user data.\n"
|
|
"This cog supports data removal requests."
|
|
)
|
|
|
|
|
|
async def setup(bot):
|
|
await bot.add_cog(Unbelievaboat(bot))
|
|
await bot.add_cog(Investments(bot))
|
|
await bot.add_cog(Heist(bot))
|
|
await bot.add_cog(Business(bot))
|