gsd 2 years ago
parent
commit
d18e6eaa0f
  1. 2
      bot.py
  2. 4
      other_ext/register.py

2
bot.py

@ -58,7 +58,7 @@ class DiscordClient(commands.Bot):
await self.tree.sync(guild=discord.Object(self.main_server_id))
await self.tree.sync()
await self.core.wait_until_ready()
await self.wait_until_ready()
print(f"[init] check exts for have prepairs")
for ext_name, ext in self.loaded_extensions.items():

4
other_ext/register.py

@ -122,7 +122,7 @@ class Extension:
return await interaction.followup.send(content=message, ephemeral=True)
async def prepair(self):
async def give_roles_to_auth(self):
not_synced = await self.get_authusers_without_sync()
for uid in not_synced:
try:
@ -167,7 +167,7 @@ class Extension:
await asyncio.sleep(5)
print("[register] update register cache who dont have role")
while True:
await self.prepair()
await self.give_roles_to_auth()
await asyncio.sleep(timeout)
async def updater(self):

Loading…
Cancel
Save