Update bump.py

This commit is contained in:
Nemika__
2021-03-28 20:42:06 +03:00
committed by GitHub
parent a0cf0bfc4c
commit f3d2cff3d8

View File

@@ -41,18 +41,12 @@ class Bumps(commands.Cog):
success, fail = 0, 0 success, fail = 0, 0
for entry in servers:
try:
server = self.bot.get_guild(entry['_id'])
webhook = await self.bot.fetch_webhook(entry['webhook'])
invite_channel = self.bot.get_channel(entry['invite'])
invite = await invite_channel.create_invite(max_uses=0, max_age=0, unique=False) invite = await invite_channel.create_invite(max_uses=0, max_age=0, unique=False)
embed = discord.Embed( embed = discord.Embed(
title=guild.name, title=guild.name,
description=entry['description'], description=server.get()['description'],
color=discord.Color(value=entry['color']), color=discord.Color(value=server.get()['color']),
url=invite.url url=invite.url
) )
@@ -64,6 +58,10 @@ class Bumps(commands.Cog):
embed.set_thumbnail(url=guild.icon_url_as(static_format="png")) embed.set_thumbnail(url=guild.icon_url_as(static_format="png"))
embed.set_footer(text=f"Powered by • {self.config['bot_name']}") embed.set_footer(text=f"Powered by • {self.config['bot_name']}")
for entry in servers:
try:
webhook = await self.bot.fetch_webhook(entry['webhook'])
invite_channel = self.bot.get_channel(entry['invite'])
await webhook.send( await webhook.send(
username=self.config['bot_name'], username=self.config['bot_name'],