
CLI Help does not explain that `--force-render` will not work by its own and need `--render` too.
sharky98 opened this issue ยท 0 comments
What i did / Steps to reproduce
Running java -jar BlueMap-cli.jar --force-render
.
Expected result
A forced render is executed.
Actual result
Only the help text is outputted without any rendering done.
Context
BlueMap Version: BlueMap-5.5-cli.jar
OS: Ubuntu 24.04
Proposals
Combined options
Options that are clearly related to another should implicitly add the related option. Such as --force-render
would implicitly mean that --render
is passed as an option.
Use commands and options
Current options that are more akind to command (--render
, --webserver
) should be converted to commands with their specific options. Such as the command java -jar BlueMap-cli.jar --force-render
would become java -jar BlueMap-cli.jar render --force
, or java -jar BlueMap-cli.jar --webserver
would become java -jar BlueMap-cli.jar webserver
.