From 5e2a2f3b9a85ebe7b503202b3978b0529c2de8e3 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Wed, 17 Jan 2007 19:15:46 +0000 Subject: [PATCH] Einzahl/Mehrzahl Diskrepanz im CR. --- src/common/gamecode/creport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/gamecode/creport.c b/src/common/gamecode/creport.c index 69f9c0c89..1dfd3e53e 100644 --- a/src/common/gamecode/creport.c +++ b/src/common/gamecode/creport.c @@ -168,7 +168,7 @@ print_items(FILE * F, item * items, const struct locale * lang) for (itm=items; itm; itm=itm->next) { int in = itm->number; - const char * ic = resourcename(itm->type->rtype, in); + const char * ic = resourcename(itm->type->rtype, 0); if (itm==items) fputs("GEGENSTAENDE\n", F); fprintf(F, "%d;%s\n", in, add_translation(ic, LOC(lang, ic))); }