Whitespaces in command argument
Open
core
- Dominant language
- Java
- Stars
- 628
- Forks
- 150
- PR merge metrics
- No merged PRs in 30d
Description
Hello,
Is there a way to define String argument as full sentence with whitespaces and quote like this :
`/command "first sentence" "second sentence"`
```
@CommandAlias("command")
public void onCommand(String arg1,String arg2){
System.out.println("arg1: " + arg1);
System.out.println("arg2: " + arg2);
}
```
```
Result :
arg1: first sentence
arg2: second sentence
```
Thanks !
Contributor guide
Assessment
This issue has not been assessed yet.