Skip to content

Commit

Permalink
Merge branch 'master' into dev/v4
Browse files Browse the repository at this point in the history
  • Loading branch information
DxsSucuk committed Oct 21, 2024
2 parents a5f928e + 3e22e9d commit d5fba45
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 @@ -77,7 +77,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 d5fba45

Please sign in to comment.