Drop requirement for the first whitelisted guild to be the one
containing log channel
This commit is contained in:
parent
9844087cd4
commit
e148e04a87
2 changed files with 2 additions and 4 deletions
|
@ -83,8 +83,8 @@ async def on_ready():
|
||||||
game_name = f"{config.prefixes[0]}help"
|
game_name = f"{config.prefixes[0]}help"
|
||||||
|
|
||||||
# Send "Robocop has started! x has y members!"
|
# Send "Robocop has started! x has y members!"
|
||||||
guild = discord.utils.get(bot.guilds, id=config.guild_whitelist[0])
|
log_channel = bot.get_channel(config.log_channel)
|
||||||
log_channel = guild.get_channel(config.log_channel)
|
guild = log_channel.guild
|
||||||
msg = f"{bot.user.name} has started! "\
|
msg = f"{bot.user.name} has started! "\
|
||||||
f"{guild.name} has {guild.member_count} members!"
|
f"{guild.name} has {guild.member_count} members!"
|
||||||
|
|
||||||
|
|
|
@ -17,8 +17,6 @@ embed_desc = "Robocop-NG is developed by [Ave](https://github.com/aveao)"\
|
||||||
# Minimum account age required to join the discord
|
# Minimum account age required to join the discord
|
||||||
min_age = datetime.timedelta(minutes=15)
|
min_age = datetime.timedelta(minutes=15)
|
||||||
|
|
||||||
# IMPORTANT: It's assumed that the first guild here
|
|
||||||
# is the one containing log_channel
|
|
||||||
guild_whitelist = [
|
guild_whitelist = [
|
||||||
526372255052201993, # NotSwitched discord
|
526372255052201993, # NotSwitched discord
|
||||||
269333940928512010 # ReSwitched discord
|
269333940928512010 # ReSwitched discord
|
||||||
|
|
Loading…
Reference in a new issue