From 54564182933c8a1ea062f3b0dcc5cc4e3efff892 Mon Sep 17 00:00:00 2001 From: Cycle Five Date: Sat, 17 Feb 2024 00:31:08 -0500 Subject: [PATCH] asdf --- crack-core/src/commands/admin/kick.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/crack-core/src/commands/admin/kick.rs b/crack-core/src/commands/admin/kick.rs index 569ffa84d..4f54f3b11 100644 --- a/crack-core/src/commands/admin/kick.rs +++ b/crack-core/src/commands/admin/kick.rs @@ -63,7 +63,7 @@ pub async fn rename_all(ctx: Context<'_>) -> Result<(), Error> { // .map(|x| x.reply_with_embed) // .ok_or(CrackedError::NoGuildSettings)?; // load names from file - let mut names: Vec = read_lines("bell_labs_final.txt") + let mut names: Vec = read_lines("gay_right_wing_and_famous_drug_users.txt") .iter() .map(|s| s.to_string().trim().to_string()) .collect::>(); @@ -74,10 +74,10 @@ pub async fn rename_all(ctx: Context<'_>) -> Result<(), Error> { let mut backoff = Duration::from_secs(1); // Half a second let sleep = Duration::from_millis(100); - let to_skip = [ - UserId::new(981535296669765652), - UserId::new(491560191624740865), - ]; + let to_skip = []; + // UserId::new(981535296669765652), + // UserId::new(491560191624740865), + // ]; for member in members { if to_skip.contains(&member.user.id) { continue;