|
18 | 18 |
|
19 | 19 | from lib.config import Config
|
20 | 20 | from lib.db import DB
|
21 |
| -from lib.progress import Progress, Timer |
| 21 | +from lib.progress import Progress, Timer, Loading |
22 | 22 | from lib.urban import UrbanDictionary
|
23 | 23 |
|
24 | 24 | COMMAND_ERROR_REGEX = r"Command raised an exception: (.*?(?=: )): (.*)"
|
@@ -55,17 +55,20 @@ def __init__(self, shards: list[int], version: str):
|
55 | 55 | owner_id="507214515641778187",
|
56 | 56 | shards=shards,
|
57 | 57 | intents=discord.Intents.all(),
|
58 |
| - description="Misc Bot used for advanced moderation and guild customization") |
| 58 | + description="Misc Bot used for advanced moderation and guild customization",) |
59 | 59 | self.tasks.add_job(self.db.commit, trigger='interval', minutes=30)
|
60 | 60 | self.shard_progress.start()
|
61 | 61 |
|
62 | 62 | async def on_connect(self):
|
63 | 63 | while not self.shards_ready:
|
64 | 64 | await asyncio.sleep(.5)
|
| 65 | + loading: Loading = Loading("Syncing commands") |
| 66 | + asyncio.ensure_future(loading.start()) |
65 | 67 | self.tree.copy_global_to(guild=discord.Object(id="1064582321728143421"))
|
66 |
| - await self.tree.sync(guild=discord.Object(id="1064582321728143421")) |
| 68 | + commands = await self.tree.sync(guild=discord.Object(id="1064582321728143421")) |
| 69 | + loading.stop(f"Synced {len(commands)} commands") |
67 | 70 | await self.register_guilds()
|
68 |
| - asyncio.ensure_future(self.monitor_shutdown()) |
| 71 | + # asyncio.ensure_future(self.monitor_shutdown()) |
69 | 72 | print(f"Signed into {self.user.display_name}#{self.user.discriminator}")
|
70 | 73 | # asyncio.ensure_future(self.timer.start())
|
71 | 74 |
|
@@ -113,13 +116,14 @@ async def monitor_shutdown(self):
|
113 | 116 | while True:
|
114 | 117 | if psutil.Process().status() == psutil.STATUS_ZOMBIE:
|
115 | 118 | await self.db.commit()
|
116 |
| - break |
| 119 | + await self.close() |
| 120 | + raise SystemExit |
117 | 121 | if psutil.process_iter(['pid', 'name']):
|
118 | 122 | for process in psutil.process_iter():
|
119 | 123 | if process.name() == 'shutdown.exe':
|
120 | 124 | await self.db.commit()
|
121 | 125 | await self.close()
|
122 |
| - exit() |
| 126 | + raise SystemExit |
123 | 127 | await asyncio.sleep(1)
|
124 | 128 |
|
125 | 129 | async def register_guilds(self):
|
|
0 commit comments