Spaces:
Paused
Paused
Captain Ezio
commited on
Commit
·
f0a2848
1
Parent(s):
809532c
Looks good
Browse files- Powers/plugins/filters.py +2 -2
- Powers/plugins/start.py +3 -1
Powers/plugins/filters.py
CHANGED
|
@@ -317,10 +317,10 @@ Using the you can make a single filter work on 2 filternames without manually ad
|
|
| 317 |
|
| 318 |
• /stop `<filter keyword>`: Stop that filter.
|
| 319 |
|
| 320 |
-
**Note:**
|
| 321 |
For filters with aliases, if you stop one alias, the filter will stop working on other aliases too.
|
| 322 |
|
| 323 |
-
**For Example:**
|
| 324 |
If you stop the "filtername1" from above example, the bot will not respond to "filtername2".
|
| 325 |
|
| 326 |
**Chat creator only:**
|
|
|
|
| 317 |
|
| 318 |
• /stop `<filter keyword>`: Stop that filter.
|
| 319 |
|
| 320 |
+
**Note:**
|
| 321 |
For filters with aliases, if you stop one alias, the filter will stop working on other aliases too.
|
| 322 |
|
| 323 |
+
**For Example:**
|
| 324 |
If you stop the "filtername1" from above example, the bot will not respond to "filtername2".
|
| 325 |
|
| 326 |
**Chat creator only:**
|
Powers/plugins/start.py
CHANGED
|
@@ -191,7 +191,9 @@ async def help_menu(_, m: Message):
|
|
| 191 |
chat_type = await chattype(m)
|
| 192 |
if chat_type == "private":
|
| 193 |
if len(help_msg) >= 1026:
|
| 194 |
-
await m.reply_text(
|
|
|
|
|
|
|
| 195 |
await m.reply_photo(
|
| 196 |
photo=choice(StartPic),
|
| 197 |
caption=help_msg,
|
|
|
|
| 191 |
chat_type = await chattype(m)
|
| 192 |
if chat_type == "private":
|
| 193 |
if len(help_msg) >= 1026:
|
| 194 |
+
await m.reply_text(
|
| 195 |
+
help_msg, parse_mode=enums.ParseMode.MARKDOWN, quote=True
|
| 196 |
+
)
|
| 197 |
await m.reply_photo(
|
| 198 |
photo=choice(StartPic),
|
| 199 |
caption=help_msg,
|