Compare commits
No commits in common. "404a46ec157cf9df722c42b00b1b130563de0187" and "0fdb365bb2d9e96f658afd9bf8b009b74889752d" have entirely different histories.
404a46ec15
...
0fdb365bb2
@ -76,8 +76,5 @@
|
|||||||
"commands": [
|
"commands": [
|
||||||
"start",
|
"start",
|
||||||
"rules"
|
"rules"
|
||||||
],
|
|
||||||
"commands_admin": [
|
|
||||||
"reboot"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
13
main.py
13
main.py
@ -369,7 +369,6 @@ if __name__ == "__main__":
|
|||||||
t = Thread(target=background_task)
|
t = Thread(target=background_task)
|
||||||
t.start()
|
t.start()
|
||||||
|
|
||||||
# Registering user commands
|
|
||||||
for entry in os.listdir(configGet("locale", "locations")):
|
for entry in os.listdir(configGet("locale", "locations")):
|
||||||
if entry.endswith(".json"):
|
if entry.endswith(".json"):
|
||||||
commands_list = []
|
commands_list = []
|
||||||
@ -377,19 +376,15 @@ if __name__ == "__main__":
|
|||||||
commands_list.append(BotCommand(command, locale(command, "commands", locale=entry.replace(".json", ""))))
|
commands_list.append(BotCommand(command, locale(command, "commands", locale=entry.replace(".json", ""))))
|
||||||
app.set_bot_commands(commands_list, language_code=entry.replace(".json", "")) # type: ignore
|
app.set_bot_commands(commands_list, language_code=entry.replace(".json", "")) # type: ignore
|
||||||
|
|
||||||
# Registering user commands for fallback locale
|
|
||||||
commands_list = []
|
commands_list = []
|
||||||
for command in configGet("commands"):
|
for command in configGet("commands"):
|
||||||
commands_list.append(BotCommand(command, locale(command, "commands", locale=configGet("locale_fallback"))))
|
commands_list.append(BotCommand(command, locale(command, "commands", locale=configGet("locale_fallback"))))
|
||||||
app.set_bot_commands(commands_list) # type: ignore
|
app.set_bot_commands(commands_list) # type: ignore
|
||||||
|
|
||||||
# Registering admin commands
|
app.set_bot_commands([ # type: ignore
|
||||||
commands_admin_list = []
|
BotCommand("reboot", locale("reboot", "commands_admin", locale=configGet("locale"))),
|
||||||
for command in configGet("commands"):
|
],
|
||||||
commands_admin_list.append(BotCommand(command, locale(command, "commands", locale=configGet("locale"))))
|
scope=BotCommandScopeChat(chat_id=configGet("admin")))
|
||||||
for command in configGet("commands_admin"):
|
|
||||||
commands_admin_list.append(BotCommand(command, locale(command, "commands_admin", locale=configGet("locale"))))
|
|
||||||
app.set_bot_commands(commands_admin_list, scope=BotCommandScopeChat(chat_id=configGet("admin"))) # type: ignore
|
|
||||||
|
|
||||||
idle()
|
idle()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user