From c496fe4d1af97e6e7c3dd68511e2c49dfe850585 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 14 Sep 2008 20:11:34 +0000 Subject: (svn r14327) -Fix [FS#2251]: if you rename a town before building something and build something near that town your company would be called " Transport". --- src/players.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/players.cpp') diff --git a/src/players.cpp b/src/players.cpp index 0b725b24c..c1875270a 100644 --- a/src/players.cpp +++ b/src/players.cpp @@ -337,7 +337,7 @@ static void GenerateCompanyName(Player *p) t = ClosestTownFromTile(tile, (uint)-1); - if (IsInsideMM(t->townnametype, SPECSTR_TOWNNAME_START, SPECSTR_TOWNNAME_LAST + 1)) { + if (t->name == NULL && IsInsideMM(t->townnametype, SPECSTR_TOWNNAME_START, SPECSTR_TOWNNAME_LAST + 1)) { str = t->townnametype - SPECSTR_TOWNNAME_START + SPECSTR_PLAYERNAME_START; strp = t->townnameparts; -- cgit v1.2.3-54-g00ecf