You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: surf-chat-bukkit/src/main/kotlin/dev/slne/surf/chat/bukkit/command/denylist/DenylistImportDefaultCommand.kt
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,16 @@ fun CommandAPICommand.denylistImportDefaultCommand() = subcommand("importdefault
49
49
50
50
plugin.launch(Dispatchers.IO) {
51
51
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(),
52
62
DenylistBatchEntry.builder()
53
63
.withReason("Gewaltverherrlichende Inhalte")
54
64
.withStaff("Arty Support")
@@ -59,9 +69,7 @@ fun CommandAPICommand.denylistImportDefaultCommand() = subcommand("importdefault
0 commit comments