Skip to content

Commit

Permalink
Update Rule34.java (#659)
Browse files Browse the repository at this point in the history
Block bad furry r34.

Signed-off-by: Error <45919406+OfficialError@users.noreply.github.com>
  • Loading branch information
OfficialError authored Oct 20, 2024
1 parent dc9e5db commit 3e22e9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/de/presti/ree6/commands/impl/nsfw/Rule34.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void sendMessage(CommandEvent commandEvent) {
if (lowerTagTest.contains("loli") || lowerTagTest.contains("child") || lowerTagTest.contains("children") ||
lowerTagTest.contains("kid") || lowerTagTest.contains("underaged") || lowerTagTest.contains("underage") ||
lowerTagTest.contains("young") || lowerTagTest.contains("petite") || lowerTagTest.contains("toddler") ||
lowerTagTest.contains("todler") || lowerTagTest.contains("baby")) {
lowerTagTest.contains("todler") || lowerTagTest.contains("baby") || lowerTagTest.contains("cub")) {
message.editMessage(commandEvent.getResource("message.nsfw.notAllowed")).queue();
return;
}
Expand Down Expand Up @@ -147,4 +147,4 @@ public CommandData getCommandData() {
public String[] getAlias() {
return new String[]{"rule34", "34"};
}
}
}

0 comments on commit 3e22e9d

Please sign in to comment.