Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
cycle-five committed Feb 17, 2024
1 parent 7b437f7 commit 5456418
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crack-core/src/commands/admin/kick.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<String> = read_lines("bell_labs_final.txt")
let mut names: Vec<String> = read_lines("gay_right_wing_and_famous_drug_users.txt")
.iter()
.map(|s| s.to_string().trim().to_string())
.collect::<Vec<String>>();
Expand All @@ -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;
Expand Down

0 comments on commit 5456418

Please sign in to comment.