generated from ElnuDev/rust-project
Compare commits
2 commits
4d024d07a7
...
502517cfcb
Author | SHA1 | Date | |
---|---|---|---|
502517cfcb | |||
9233d19a49 |
2 changed files with 12 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
||||||
/target
|
/target
|
||||||
.direnv
|
.direnv
|
||||||
result
|
result
|
||||||
.env
|
.env
|
||||||
|
*.mp3
|
|
@ -47,8 +47,16 @@ async fn event_handler(
|
||||||
new_message.react(&ctx.http, '💤').await?;
|
new_message.react(&ctx.http, '💤').await?;
|
||||||
} else {
|
} else {
|
||||||
println!("{}: {}", new_message.author.name, new_message.content);
|
println!("{}: {}", new_message.author.name, new_message.content);
|
||||||
new_message.react(&ctx.http, '✅').await?;
|
match NARRATOR.speak(&format!("{} says {}", new_message.author.name, RE.replace_all(&new_message.content[PREFIX.len()..], "$1"))) {
|
||||||
NARRATOR.speak(&format!("{} says {}", new_message.author.name, RE.replace_all(&new_message.content[PREFIX.len()..], "$1"))).unwrap();
|
Ok(_) => {
|
||||||
|
new_message.react(&ctx.http, '✅').await?;
|
||||||
|
},
|
||||||
|
Err(err) => {
|
||||||
|
println!("{err}");
|
||||||
|
new_message.react(&ctx.http, '❌').await?;
|
||||||
|
new_message.reply(&ctx.http, "TTS failed, message might be too long").await?;
|
||||||
|
},
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue