0.3 - AutoRole Emoji zu nachricht nach Anlegen einer Regel hinzufügen (#63) #110

Merged
edraft merged 2 commits from #63 into 0.3 2022-11-11 07:26:28 +01:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit 2646dccb91 - Show all commits

View File

@ -58,8 +58,8 @@ class RestartCommand(DiscordCommandABC):
self._config.add_configuration('IS_RESTART', 'true')
await self._client_utils.presence_game('common.presence.restart')
await asyncio.sleep(self._settings.wait_for_restart)
await self._message_service.send_ctx_msg(ctx, self._t.transform('modules.admin.restart_message'))
await asyncio.sleep(self._settings.wait_for_restart)
await self._bot.stop_async()
self._logger.trace(__name__, f'Finished restart command')

View File

@ -122,6 +122,11 @@ class LevelGroup(DiscordCommandABC):
return
self._client_utils.received_command(ctx.guild.id)
if not self._permissions.is_member_admin(ctx.author):
await self._message_service.send_ctx_msg(ctx, self._t.transform('common.no_permission_message'))
self._logger.trace(__name__, f'Finished command level remove')
return
try:
color = hex(discord.Colour.from_str(color).value)
except Exception as e: