forked from github/server
dragon names always contained 2 spaces after the article
http://bugs.eressea.de/view.php?id=1884
This commit is contained in:
parent
f7afab976a
commit
9640ac19b3
|
@ -276,7 +276,7 @@ const char *dragon_name(const unit * u)
|
|||
const char *no_article = strchr((const char *)str, ' ');
|
||||
assert(no_article);
|
||||
/* 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));
|
||||
} else {
|
||||
char n[32];
|
||||
|
|
Loading…
Reference in New Issue