mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2025-06-16 03:15:24 +02:00
Disallow none target
This commit is contained in:
@ -194,6 +194,8 @@ def get_channels_list(guildchannels):
|
||||
overwrites = []
|
||||
isTextChannel = isinstance(channel, discord.channel.TextChannel)
|
||||
for target, overwrite in channel.overwrites:
|
||||
if not target:
|
||||
continue
|
||||
if isinstance(target, discord.Role):
|
||||
type = "role"
|
||||
else:
|
||||
|
Reference in New Issue
Block a user