From ca347ea1f7198d099b6afd35a4cae56c0e700ffc Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sat, 10 Feb 2007 11:16:01 +0000 Subject: [PATCH] http://eressea.upb.de/mantis/view.php?id=1052 "zauber-syntax in den cr aufnehmen" bugfix --- 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 0eaef9945..9ea93bdee 100644 --- a/src/common/gamecode/creport.c +++ b/src/common/gamecode/creport.c @@ -986,7 +986,7 @@ cr_reportspell(FILE * F, spell *sp, const struct locale * lang) fprintf(F, "%d;rank\n", sp->rank); fprintf(F, "\"%s\";info\n", spell_info(sp, lang)); if (sp->syntax) fprintf(F, "\"%s\";syntax\n", sp->syntax); - else fputs(F, "\"\";syntax\n", F); + else fputs("\"\";syntax\n", F); if (sp->sptyp & PRECOMBATSPELL) fputs("\"precombat\";class\n", F); else if (sp->sptyp & COMBATSPELL) fputs("\"combat\";class\n", F);