Skip to content

Commit be4df05

Browse files
feat: add new denylist entries for extremist and violent content; remove redundant entries
1 parent 1dfc637 commit be4df05

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

surf-chat-bukkit/src/main/kotlin/dev/slne/surf/chat/bukkit/command/denylist/DenylistImportDefaultCommand.kt

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,16 @@ fun CommandAPICommand.denylistImportDefaultCommand() = subcommand("importdefault
4949

5050
plugin.launch(Dispatchers.IO) {
5151
listOf(
52+
DenylistBatchEntry.builder()
53+
.withReason("Verwenden von Kennzeichen verfassungswidriger und terroristischer Organisationen")
54+
.withStaff("Arty Support")
55+
.withActionType(DenylistActionType.PERMANENT_BAN)
56+
.withPunishReason("Verwenden von Kennzeichen verfassungswidriger und terroristischer Organisationen")
57+
.withWords(
58+
"heil hitler",
59+
"heilhitler"
60+
)
61+
.build(),
5262
DenylistBatchEntry.builder()
5363
.withReason("Gewaltverherrlichende Inhalte")
5464
.withStaff("Arty Support")
@@ -59,9 +69,7 @@ fun CommandAPICommand.denylistImportDefaultCommand() = subcommand("importdefault
5969
"kys",
6070
"nigger",
6171
"ngga",
62-
"nigga",
63-
"hh",
64-
"heil hitler"
72+
"nigga"
6573
)
6674
.build(),
6775
DenylistBatchEntry.builder()

0 commit comments

Comments
 (0)