Notable Changes:
- You guys can now change how prompts are determined.
In the config, a new configuration node called
"Argument-Regex" is now available. Changing the first and last character of the default regex "
<
.*?
>" will determine if part of a command is an argument.
Example:
Code (Text):
Argument-Regex: '<.*?>'
The configuration above signifies that "
<some arg
>" is an argument.
Code (Text):
Argument-Regex: '[.*?]'
The configuration above signifies that "
[some arg
]" is an argument.
- CommandPrompter Property file is now available for translations.
All of the messages that CommandPrompter uses is now inside a property file called "CommandPrompter.properties". That means you can now change it to whatever you guys want it to be. Have fun lol.
Other Changes:
- CommandPrompter now is using a new command framework. (with brigadier support)
- Fixed error logging when my web-server SSL cert expires. lol
- Tried to make the file size smaller :3.