catch permissions errors when changing nicks

master
xenofem 2020-05-15 22:41:43 -04:00
parent 4b351648f7
commit a1e086ba2f
1 changed files with 6 additions and 3 deletions

View File

@ -42,9 +42,12 @@ async def on_message(message):
if any(w in message.content for w in RUDE_WORDS):
await message.channel.send('Your Club Penguin account has been deactivated for inappropriate language.')
oldnick = message.author.nick
await message.author.edit(nick="BANNED")
await asyncio.sleep(300)
await message.author.edit(nick=oldnick)
try:
await message.author.edit(nick="BANNED")
await asyncio.sleep(300)
await message.author.edit(nick=oldnick)
except discord.Forbidden:
print('Permissions error while trying to change nickname of {}'.format(message.author), file=sys.stderr)
with open('token') as f:
token = f.read().strip()