Fixed remove warning team notification #270
This commit is contained in:
parent
75ad07477a
commit
4debe4e2ba
@ -25,7 +25,9 @@ class MessageServiceABC(ABC):
|
|||||||
self,
|
self,
|
||||||
channel: discord.TextChannel,
|
channel: discord.TextChannel,
|
||||||
message: Union[str, discord.Embed],
|
message: Union[str, discord.Embed],
|
||||||
without_tracking=True,
|
is_persistent: bool = False,
|
||||||
|
wait_before_delete: int = None,
|
||||||
|
without_tracking=False,
|
||||||
):
|
):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@ -57,7 +57,9 @@ class UserWarningsService:
|
|||||||
else:
|
else:
|
||||||
translation = self._t.transform("modules.base.warnings.team_warned").format(member.mention, description)
|
translation = self._t.transform("modules.base.warnings.team_warned").format(member.mention, description)
|
||||||
|
|
||||||
self._bot.loop.create_task(self._message_service.send_channel_message(channel, translation))
|
self._bot.loop.create_task(
|
||||||
|
self._message_service.send_channel_message(channel, translation, is_persistent=True)
|
||||||
|
)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self._logger.error(__name__, f"Team notification for user warning failed!", e)
|
self._logger.error(__name__, f"Team notification for user warning failed!", e)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user