From 1aa435ef088c65c1fe9e618a2232b5b11655fd35 Mon Sep 17 00:00:00 2001 From: Nick80835 Date: Tue, 22 Jun 2021 10:05:16 -0400 Subject: [PATCH] add /nsfw hint in /start --- ubot/modules/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubot/modules/system.py b/ubot/modules/system.py index 0bec378..964a7b5 100644 --- a/ubot/modules/system.py +++ b/ubot/modules/system.py @@ -15,7 +15,7 @@ async def delete_message(event): @ldr.add("start", no_disable=True, help="A start command to start the bot so you know what this bot is capable of when you start it, dumbass.") async def start_cmd(event): await event.reply( - f"Hi I'm {ldr.settings.get_config('bot_name') or 'μBot'}, use /help to see what commands I have!", + f"Hi I'm {ldr.settings.get_config('bot_name') or 'μBot'}, use /help to see what commands I have!\nYou can also use /nsfw to toggle NSFW commands.", buttons=[Button.url("Creator", "https://t.me/Nick80835"), Button.url("Source", "https://github.com/Nick80835/microbot/tree/bot")], link_preview=False )