Migrated atcommand aliases and help to YAML (#4487)

Merges atcommand_athena.conf and help.txt into a single file.
Removed some leftover settings that were removed before.
Removed CLI support for modifying the atcommand configuration file.
Moved atcommand and charcommand symbol definition into conf/battle/gm.conf
Removed some messages that are not needed anymore

Co-authored-by: Aleos <aleos89@users.noreply.github.com>
This commit is contained in:
Lemongrass3110
2019-12-21 19:19:19 +01:00
committed by GitHub
parent b967439fa7
commit 64b5c3082b
21 changed files with 1204 additions and 625 deletions

View File

@@ -23,7 +23,6 @@ const char* MAP_CONF_NAME;
const char* INTER_CONF_NAME;
const char* LOG_CONF_NAME;
const char* BATTLE_CONF_FILENAME;
const char* ATCOMMAND_CONF_FILENAME;
const char* SCRIPT_CONF_NAME;
const char* GRF_PATH_FILENAME;
//char confs
@@ -148,10 +147,6 @@ int cli_get_options(int argc, char ** argv) {
if (opt_has_next_value(arg, i, argc))
BATTLE_CONF_FILENAME = argv[++i];
}
else if (strcmp(arg, "atcommand-config") == 0) {
if (opt_has_next_value(arg, i, argc))
ATCOMMAND_CONF_FILENAME = argv[++i];
}
else if (strcmp(arg, "script-config") == 0) {
if (opt_has_next_value(arg, i, argc))
SCRIPT_CONF_NAME = argv[++i];