Fix typo
This commit is contained in:
parent
b666930fe7
commit
5446a54289
|
@ -48,7 +48,7 @@ public class ChatITCommand {
|
|||
})
|
||||
)
|
||||
.then(Commands.literal("mode")
|
||||
.requires(source -> source.hasPermission(2)) // Требует уровень разрешения 2 (оператор)
|
||||
.requires(source -> source.hasPermission(2))
|
||||
.then(Commands.argument("mode", StringArgumentType.word())
|
||||
.executes(context -> {
|
||||
String modeInput = StringArgumentType.getString(context, "mode").toLowerCase();
|
||||
|
@ -61,10 +61,8 @@ public class ChatITCommand {
|
|||
return 0;
|
||||
}
|
||||
|
||||
// Установка нового режима в конфигурации
|
||||
Config.setProfanityMode(newMode);
|
||||
|
||||
// Отправка подтверждающего сообщения
|
||||
context.getSource().sendSuccess(
|
||||
() -> Component.literal("Режим проверки мата установлен на: " + newMode.name().toLowerCase() + ".")
|
||||
.withStyle(ChatFormatting.GREEN),
|
||||
|
@ -77,7 +75,6 @@ public class ChatITCommand {
|
|||
)
|
||||
);
|
||||
|
||||
// Регистрация команды /r
|
||||
dispatcher.register(Commands.literal("r")
|
||||
.then(Commands.argument("message", MessageArgument.message())
|
||||
.executes(context -> {
|
||||
|
|
Loading…
Reference in New Issue