dragon names always contained 2 spaces after the article

http://bugs.eressea.de/view.php?id=1884
This commit is contained in:
Enno Rehling 2012-03-04 16:42:19 -08:00
parent f7afab976a
commit 9640ac19b3
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ const char *dragon_name(const unit * u)
const char *no_article = strchr((const char *)str, ' '); const char *no_article = strchr((const char *)str, ' ');
assert(no_article); assert(no_article);
/* TODO: GERMAN */ /* TODO: GERMAN */
sprintf(name, "Die %sn von %s", no_article, rname(u->region, sprintf(name, "Die %sn von %s", no_article+1, rname(u->region,
default_locale)); default_locale));
} else { } else {
char n[32]; char n[32];