Skip to content

Commit

Permalink
Yeaahhh I don’t want you as my bitch
Browse files Browse the repository at this point in the history
  • Loading branch information
Noxiuam authored Mar 23, 2022
1 parent f337156 commit 4f8461c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/gq/noxiuam/bitches/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ public Main() {

// Gives me more bitches until the machine can't compute anymore
for (int i = 0; i < Integer.MAX_VALUE; i++) {
this.allMyBitches.add(new Bitch(faker.name().firstName(), "they/them", new Random().nextInt(30) + 18, Races.values()[new Random().nextInt(Races.values().length)]));
String name = faker.name().firstName();
if (name.equalsIgnoreCase("Allie")) continue;

this.allMyBitches.add(new Bitch(name, "they/them", new Random().nextInt(30) + 18, Races.values()[new Random().nextInt(Races.values().length)]));
System.out.println("New Bitch: " + this.allMyBitches.get(i).getName());
}
}
Expand Down

0 comments on commit 4f8461c

Please sign in to comment.