From 8ed121d7c0e5b10fce80599617c3c5081e7b0145 Mon Sep 17 00:00:00 2001 From: Agatha Rose Date: Mon, 30 Jul 2018 16:41:23 +0300 Subject: [PATCH] Blacklist a user --- Cargo.toml | 2 +- src/main.rs | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8a35d3b..0b8e5ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustcord" -version = "0.5.2" +version = "0.5.3" authors = ["EvilDeaaaadd "] [dependencies] diff --git a/src/main.rs b/src/main.rs index d32e299..74e4edd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -95,6 +95,7 @@ command!(list_srv(_ctx, message) { }); command!(gayculator(_ctx, message, args) { +if message.author.id != 191948420141809665 { let number_32: i32 = args.trim().parse() .expect("ERR!"); let mut result; @@ -109,6 +110,7 @@ command!(gayculator(_ctx, message, args) { .description(result) .color(0xff00f9)) ); + } }); command!(waffle(_ctx, message) { @@ -169,6 +171,7 @@ let num = CACHE.read().guilds.len(); }); command!(compare_bot(_ctx, message, args) { +if message.author.id != 191948420141809665 { let text: String = args.trim().parse() .expect("ERR!"); if text.to_lowercase().contains("nib") { @@ -179,7 +182,8 @@ let text: String = args.trim().parse() let _ = message.channel_id.say("Metaaaa, dude"); } else { let _ = message.channel_id.say(format!("Me and {} are friends!", text)); - } + } +} });