Skip to content

Commit c946e76

Browse files
authored
Merge pull request #90 from SLNE-Development/feat/correct-punishments
Feat/correct punishments
2 parents 6822a24 + 9a2e493 commit c946e76

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.idea/kotlinc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,13 @@ fun CommandAPICommand.denylistImportDefaultCommand() = subcommand("importdefault
5050
plugin.launch(Dispatchers.IO) {
5151
listOf(
5252
DenylistBatchEntry.builder()
53-
.withReason("Rassismus, Extremismus, Gewalt")
53+
.withReason("Verwenden von Kennzeichen verfassungswidriger und terroristischer Organisationen")
5454
.withStaff("Arty Support")
5555
.withActionType(DenylistActionType.COMMUNITY_BAN)
56-
.withPunishReason("Rassistische oder extremistische Inhalte")
56+
.withPunishReason("Verwenden von Kennzeichen verfassungswidriger und terroristischer Organisationen")
5757
.withWords(
58-
"nigger",
59-
"ngga",
60-
"nigga",
61-
"hh",
62-
"heil hitler"
58+
"heil hitler",
59+
"heilhitler"
6360
)
6461
.build(),
6562
DenylistBatchEntry.builder()
@@ -70,6 +67,9 @@ fun CommandAPICommand.denylistImportDefaultCommand() = subcommand("importdefault
7067
.withWords(
7168
"killyourself",
7269
"kys",
70+
"nigger",
71+
"ngga",
72+
"nigga"
7373
)
7474
.build(),
7575
DenylistBatchEntry.builder()

0 commit comments

Comments
 (0)