Spaces:
Sleeping
Sleeping
Captain Ezio
commited on
Commit
·
c822cde
1
Parent(s):
45fd7a8
Update start.py
Browse files- Powers/plugins/start.py +8 -8
Powers/plugins/start.py
CHANGED
@@ -105,16 +105,16 @@ Join my [News Channel](https://t.me/gojo_bots_network) to get information on all
|
|
105 |
except UserIsBlocked:
|
106 |
LOGGER.warning(f"Bot blocked by {m.from_user.id}")
|
107 |
else:
|
108 |
-
|
|
|
109 |
[
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
)
|
115 |
-
],
|
116 |
],
|
117 |
-
|
|
|
118 |
|
119 |
await m.reply_photo(
|
120 |
photo=choice(StartPic),
|
|
|
105 |
except UserIsBlocked:
|
106 |
LOGGER.warning(f"Bot blocked by {m.from_user.id}")
|
107 |
else:
|
108 |
+
kb = InlineKeyboardMarkup(
|
109 |
+
[
|
110 |
[
|
111 |
+
InlineKeyboardButton(
|
112 |
+
"Connect me to pm",
|
113 |
+
url=f"https://t.me/{Config.BOT_USERNAME}?start=start",
|
114 |
+
),
|
|
|
|
|
115 |
],
|
116 |
+
],
|
117 |
+
)
|
118 |
|
119 |
await m.reply_photo(
|
120 |
photo=choice(StartPic),
|