Change Spam Protection .sp alias to .spb due to selfpurge conflict

This commit is contained in:
blank X 2020-10-18 17:07:12 +07:00
parent 3d3c696065
commit 00d91c7d15
1 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ DEAI_MODULE_CODES = {
"8": "Codename Gestapo"
}
@Client.on_message(~filters.sticker & ~filters.via_bot & ~filters.edited & filters.me & filters.command(['einfo', 'externalinfo', 'sw', 'spamwatch', 'deai', 'sp', 'spamprotection', 'cas', 'combot', 'rose'], prefixes=config['config']['prefixes']))
@Client.on_message(~filters.sticker & ~filters.via_bot & ~filters.edited & filters.me & filters.command(['einfo', 'externalinfo', 'sw', 'spamwatch', 'deai', 'spb', 'spamprotection', 'cas', 'combot', 'rose'], prefixes=config['config']['prefixes']))
@log_errors
@public_log_errors
async def fedstat(client, message):
@ -60,7 +60,7 @@ async def fedstat(client, message):
entity, entity_client = await get_entity(client, entity)
if not isinstance(entity, str):
entity = str(entity.id)
if entity.startswith('TEL-') or int(entity) < 0 or command in ('sp', 'spamprotection'):
if entity.startswith('TEL-') or int(entity) < 0 or command in ('spb', 'spamprotection'):
await message.reply_text(f'Spam Protection:\n{await get_spam_protection(entity)}')
elif command in ('sw', 'spamwatch'):
await message.reply_text(f'Spamwatch:\n{await get_spamwatch(entity)}')
@ -206,4 +206,4 @@ Aliases: {prefix}combot
{prefix}spamprotection <i>&lt;user&gt;</i> - Get Spam Protection info of <i>&lt;user&gt;</i>
{prefix}spamprotection <i>(as reply to message)</i> - Get Spam Protection info of replied user
Aliases: {prefix}sp''')
Aliases: {prefix}spb''')