X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fturrets%2Fall.qh;h=5bebc285db77fbcdc8c9fc5c75686601a3911ac0;hb=bf25b11aa77e27433d9ec5e8ce5c51639e6754d3;hp=e44c5d9b544d67b9c717580127fdb18f3cb1a14b;hpb=24151b08c3de08e46dace760129f0526a455be4b;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/turrets/all.qh b/qcsrc/common/turrets/all.qh index e44c5d9b5..5bebc285d 100644 --- a/qcsrc/common/turrets/all.qh +++ b/qcsrc/common/turrets/all.qh @@ -56,7 +56,9 @@ REGISTRY_CHECK(Turrets) #define TR_CONFIG_END() #endif -GENERIC_COMMAND(dumpturrets, "Dump all turrets into turrets_dump.txt", false) +#define DEFAULT_FILENAME "turrets_dump.cfg" +// NOTE: dumpeffectinfo, dumpnotifs, dumpturrets and dumpweapons use similar code +GENERIC_COMMAND(dumpturrets, "Dump all turrets into " DEFAULT_FILENAME, false) { switch(request) { @@ -69,12 +71,12 @@ GENERIC_COMMAND(dumpturrets, "Dump all turrets into turrets_dump.txt", false) if(filename == "") { - filename = "turrets_dump.cfg"; + filename = DEFAULT_FILENAME; tur_config_alsoprint = false; } else if(filename == "-") { - filename = "turrets_dump.cfg"; + filename = DEFAULT_FILENAME; tur_config_alsoprint = true; } tur_config_file = fopen(filename, FILE_WRITE); @@ -92,7 +94,7 @@ GENERIC_COMMAND(dumpturrets, "Dump all turrets into turrets_dump.txt", false) LOG_INFOF("^1Error: ^7Could not open file '%s'!", filename); } #else - LOG_INFO(_("Turrets dump command only works with sv_cmd.")); + LOG_INFO("Turrets dump command only works with sv_cmd."); #endif return; } @@ -100,14 +102,15 @@ GENERIC_COMMAND(dumpturrets, "Dump all turrets into turrets_dump.txt", false) default: case CMD_REQUEST_USAGE: { - LOG_HELP("Usage:^3 ", GetProgramCommandPrefix(), " dumpturrets [filename]"); - LOG_HELP(" Where 'filename' is the file to write (default is turrets_dump.cfg),"); + LOG_HELP("Usage:^3 ", GetProgramCommandPrefix(), " dumpturrets []"); + LOG_HELPF(" Where is the file to write (default is %s),", DEFAULT_FILENAME); LOG_HELP(" if supplied with '-' output to console as well as default,"); LOG_HELP(" if left blank, it will only write to default."); return; } } } +#undef DEFAULT_FILENAME const int TUR_FIRST = 1;