(svn r6895) - Fix (r6884): Add 'last' parameter to the town name generators.

This commit is contained in:
peter1138
2006-10-22 10:08:49 +00:00
parent 8e3853f5ce
commit 9f1163af09
3 changed files with 156 additions and 155 deletions

View File

@@ -921,7 +921,7 @@ static char *GetSpecialTownNameString(char *buff, int ind, uint32 seed, const ch
{
char name[512];
_town_name_generators[ind](name, seed); // TODO
_town_name_generators[ind](name, seed, last);
return strecpy(buff, name, last);
}