Apply formatting

This commit is contained in:
Agatha 2020-04-02 19:16:14 +03:00
parent 98e8481ab8
commit 57e51c42ac
1 changed files with 9 additions and 4 deletions

View File

@ -55,7 +55,11 @@ fn main() {
StandardFramework::new()
.configure(|c| {
c.with_whitespace(true)
.owners(vec![UserId(254310746450690048), UserId(687740609703706630)].into_iter().collect())
.owners(
vec![UserId(254310746450690048), UserId(687740609703706630)]
.into_iter()
.collect(),
)
.prefixes(vec!["owo ", "OwO "])
.no_dm_prefix(true)
.case_insensitivity(true)
@ -260,7 +264,9 @@ fn embed(ctx: &mut Context, message: &Message, args: Args) -> CommandResult {
m
});
let _ = message.channel_id.say(&ctx.http, format!("Embed requested by: {}", message.author));
let _ = message
.channel_id
.say(&ctx.http, format!("Embed requested by: {}", message.author));
Ok(())
}
@ -364,10 +370,9 @@ fn ship(ctx: &mut Context, message: &Message, args: Args) -> CommandResult {
fn headpat(ctx: &mut Context, message: &Message, args: Args) -> CommandResult {
let name = match message.mentions.len() {
0 => args.rest().trim(),
_ => message.mentions[0].name.as_str()
_ => message.mentions[0].name.as_str(),
};
if let Err(e) = message.channel_id.send_message(&ctx.http, |m| {
m.embed(|e| {
e.title(format!("Sending headpats to **{}**...", name))