diff options
author | Haru <haru@dotalux.com> | 2013-11-10 06:02:07 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-11-10 06:02:07 +0100 |
commit | 985c2fdd37bdf0771dd3ac302128f18a4867580c (patch) | |
tree | 91ee3e3830acc401ad087ecc830653edb72d8622 /src/map | |
parent | 122c4915e54fa4a28c57faad35af33eeaaae8cdb (diff) | |
download | hercules-985c2fdd37bdf0771dd3ac302128f18a4867580c.tar.gz hercules-985c2fdd37bdf0771dd3ac302128f18a4867580c.tar.bz2 hercules-985c2fdd37bdf0771dd3ac302128f18a4867580c.tar.xz hercules-985c2fdd37bdf0771dd3ac302128f18a4867580c.zip |
Follow-up to 97001710c06ed7053d18c8baaac602eb563b64b3
- Added --script-check to the --help screen.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/map.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/map/map.c b/src/map/map.c index 1d47d196e..3469a60ce 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -5204,17 +5204,18 @@ void map_helpscreen(bool do_exit) ShowInfo("Usage: %s [options]\n", SERVER_NAME); ShowInfo("\n"); ShowInfo("Options:\n"); - ShowInfo(" -?, -h [--help]\t\tDisplays this help screen.\n"); - ShowInfo(" -v [--version]\t\tDisplays the server's version.\n"); - ShowInfo(" --run-once\t\t\tCloses server after loading (testing).\n"); - ShowInfo(" --map-config <file>\t\tAlternative map-server configuration.\n"); - ShowInfo(" --battle-config <file>\tAlternative battle configuration.\n"); - ShowInfo(" --atcommand-config <file>\tAlternative atcommand configuration.\n"); - ShowInfo(" --script-config <file>\tAlternative script configuration.\n"); - ShowInfo(" --msg-config <file>\t\tAlternative message configuration.\n"); - ShowInfo(" --grf-path <file>\t\tAlternative GRF path configuration.\n"); - ShowInfo(" --inter-config <file>\t\tAlternative inter-server configuration.\n"); - ShowInfo(" --log-config <file>\t\tAlternative logging configuration.\n"); + ShowInfo(" -?, -h [--help] Displays this help screen.\n"); + ShowInfo(" -v [--version] Displays the server's version.\n"); + ShowInfo(" --run-once Closes server after loading (testing).\n"); + ShowInfo(" --map-config <file> Alternative map-server configuration.\n"); + ShowInfo(" --battle-config <file> Alternative battle configuration.\n"); + ShowInfo(" --atcommand-config <file> Alternative atcommand configuration.\n"); + ShowInfo(" --script-config <file> Alternative script configuration.\n"); + ShowInfo(" --msg-config <file> Alternative message configuration.\n"); + ShowInfo(" --grf-path <file> Alternative GRF path configuration.\n"); + ShowInfo(" --inter-config <file> Alternative inter-server configuration.\n"); + ShowInfo(" --log-config <file> Alternative logging configuration.\n"); + ShowInfo(" --script-check <file> Tests a script for errors, without running the server.\n"); HPM->arg_help();/* display help for commands implemented thru HPM */ if( do_exit ) exit(EXIT_SUCCESS); |