Changed the way leave and join messages display names and removed the unban check
This commit is contained in:
parent
79824663df
commit
ea2cf80fc3
@ -84,20 +84,20 @@ class TrafficCog(commands.Cog):
|
|||||||
return
|
return
|
||||||
self.__checkClock()
|
self.__checkClock()
|
||||||
if self.channel in member.guild.channels and self.toggleLogs:
|
if self.channel in member.guild.channels and self.toggleLogs:
|
||||||
await self.channel.send('>>> {0} has joined the server'.format(member.mention))
|
await self.channel.send('{0} has joined the server'.format(member.name))
|
||||||
self.totalJoinedCount += 1
|
self.totalJoinedCount += 1
|
||||||
self.dailyJoinedCount += 1
|
self.dailyJoinedCount += 1
|
||||||
self.totalLogs += 1
|
self.totalLogs += 1
|
||||||
except (discord.NotFound, discord.Forbidden):
|
except (discord.NotFound, discord.Forbidden):
|
||||||
print(
|
print(
|
||||||
f'Error Occured! sending a dm to {member.display_name} didnt work !')
|
f'Error Occured!')
|
||||||
|
|
||||||
@commands.Cog.listener()
|
@commands.Cog.listener()
|
||||||
async def on_member_remove(self, member: discord.Member) -> None:
|
async def on_member_remove(self, member: discord.Member) -> None:
|
||||||
try:
|
try:
|
||||||
self.__checkClock()
|
self.__checkClock()
|
||||||
if self.channel in member.guild.channels and self.toggleLogs:
|
if self.channel in member.guild.channels and self.toggleLogs:
|
||||||
await self.channel.send('>>> {0} has left the server'.format(member.mention))
|
await self.channel.send('{0} has left the server'.format(member.name))
|
||||||
self.totalLeftCount += 1
|
self.totalLeftCount += 1
|
||||||
self.dailyLeftCount += 1
|
self.dailyLeftCount += 1
|
||||||
self.totalLogs += 1
|
self.totalLogs += 1
|
||||||
@ -110,21 +110,10 @@ class TrafficCog(commands.Cog):
|
|||||||
try:
|
try:
|
||||||
self.__checkClock()
|
self.__checkClock()
|
||||||
if self.channel in member.guild.channels and self.toggleLogs:
|
if self.channel in member.guild.channels and self.toggleLogs:
|
||||||
await self.channel.send('>>> {0} has been banned from the server'.format(member.mention))
|
await self.channel.send('{0} has been banned from the server'.format(member.name))
|
||||||
self.totalLeftCount += 1
|
self.totalLeftCount += 1
|
||||||
self.dailyLeftCount += 1
|
self.dailyLeftCount += 1
|
||||||
self.totalLogs += 1
|
self.totalLogs += 1
|
||||||
except (discord.NotFound, discord.Forbidden):
|
except (discord.NotFound, discord.Forbidden):
|
||||||
print(
|
print(
|
||||||
f'Error Occured!')
|
f'Error Occured!')
|
||||||
|
|
||||||
@commands.Cog.listener()
|
|
||||||
async def on_member_ban(self, guild: discord.Guild, member: discord.Member) -> None:
|
|
||||||
try:
|
|
||||||
self.__checkClock()
|
|
||||||
if self.channel in member.guild.channels and self.toggleLogs:
|
|
||||||
await self.channel.send('>>> {0} has been unbanned from the server'.format(member.mention))
|
|
||||||
self.totalLogs += 1
|
|
||||||
except (discord.NotFound, discord.Forbidden):
|
|
||||||
print(
|
|
||||||
f'Error Occured!')
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user