diff --git a/src/eressea/korrektur.c b/src/eressea/korrektur.c index 2731568ae..463c14817 100644 --- a/src/eressea/korrektur.c +++ b/src/eressea/korrektur.c @@ -1034,28 +1034,6 @@ fix_resources(void) return retval; } -#define REPORT_NR (1 << O_REPORT) -#define REPORT_CR (1 << O_COMPUTER) -#define REPORT_ZV (1 << O_ZUGVORLAGE) - -static int -disable_templates(void) -{ - faction * f; - for (f=factions;f;f=f->next) { - if (f->options & REPORT_CR) { - f->options &= ~REPORT_ZV; - } - } - return 0; -} - -static int -nothing(void) -{ - return 0; -} - static int fix_attribflags(void) { @@ -1119,8 +1097,6 @@ fix_chaosgates(void) return 0; } -void print_keys(const attrib * alist); - void korrektur(void) { @@ -1129,12 +1105,6 @@ korrektur(void) #if TEST_LOCALES setup_locales(); #endif - if (turn>400) { - print_keys(global.attribs); - do_once("zvrm", &disable_templates); - } else { - do_once("zvrm", ¬hing); - } do_once("rdec", &road_decay); do_once("chgt", &fix_chaosgates);