Compare commits
No commits in common. "2997c7ac7d81ce09d900b9708dd74a4a29b0b5ab" and "f286575ba65cf2c9170c82f6c385bca4b8a4f4d3" have entirely different histories.
2997c7ac7d
...
f286575ba6
|
@ -32,7 +32,7 @@ enum Commands {
|
|||
1. Сделать реплай на сообщение человека, которого вы хотите забанить; \
|
||||
2. Указать причину бана."
|
||||
)]
|
||||
Nuremberg(String),
|
||||
Tribunal(String),
|
||||
#[command(description = "Мьют человека. Для этого необходимо \
|
||||
1. Сделать реплай на сообщение человека, которого вы хотите замьютить; \
|
||||
2. Указатножитель мьюта.",
|
||||
|
@ -46,7 +46,7 @@ async fn callback(bot: Bot, msg: Message, commands: Commands) -> ResponseResult<
|
|||
Commands::Help => {
|
||||
bot.send_message(msg.chat.id, Commands::descriptions().to_string()).await?;
|
||||
},
|
||||
Commands::Nuremberg(reason) => {
|
||||
Commands::Tribunal(reason) => {
|
||||
if is_admin_check(&msg, &bot).await {
|
||||
let reason_result = if reason.is_empty() { None } else { Some(reason) };
|
||||
let _ = ban_user(
|
||||
|
|
Reference in New Issue