Есть такая команда:
msg = CommandSpec.builder()
.permission("chatsponge.command.msg")
.arguments(
GenericArguments.onlyOne(GenericArguments.player(Text.of("receiver"))),
GenericArguments.onlyOne(GenericArguments.text(Text.of("text"), TextSerializers.FORMATTING_CODE, true))
)
.executor(new MsgCommand(plugin))
.build();
При вводе /msg Russia9 ""
у аргумента text результат будет - пустая строка. Как-то можно решить?