From 93f459d615658a9f79bbcd8a770a20cc3e25c934 Mon Sep 17 00:00:00 2001 From: Valerie Date: Wed, 28 May 2025 21:53:47 -0400 Subject: [PATCH] Add new cogs for Investments, Heist, and Business in Unbelievaboat 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. --- unbelievaboat/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/unbelievaboat/__init__.py b/unbelievaboat/__init__.py index c432089..943f643 100644 --- a/unbelievaboat/__init__.py +++ b/unbelievaboat/__init__.py @@ -1,4 +1,7 @@ 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" @@ -9,3 +12,6 @@ __red_end_user_data_statement__ = ( 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))