summaryrefslogtreecommitdiff
path: root/src/company_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2013-06-27 20:20:13 +0000
committerrubidium <rubidium@openttd.org>2013-06-27 20:20:13 +0000
commit11e6d5c8dfe42215d07c539393e03ed13614891e (patch)
tree32f47ac611e734060030389368baaa33a07f0047 /src/company_cmd.cpp
parent868001a1e0f145b29af154da09a939c37f0f5a51 (diff)
downloadopenttd-11e6d5c8dfe42215d07c539393e03ed13614891e.tar.xz
(svn r25490) -Fix [FS#5610]: the face of the manager differed on clients when the company was started after the clients joined
Diffstat (limited to 'src/company_cmd.cpp')
-rw-r--r--src/company_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/company_cmd.cpp b/src/company_cmd.cpp
index 589076b21..101248481 100644
--- a/src/company_cmd.cpp
+++ b/src/company_cmd.cpp
@@ -551,7 +551,7 @@ Company *DoStartupNewCompany(bool is_ai, CompanyID company = INVALID_COMPANY)
c->avail_railtypes = GetCompanyRailtypes(c->index);
c->avail_roadtypes = GetCompanyRoadtypes(c->index);
c->inaugurated_year = _cur_year;
- RandomCompanyManagerFaceBits(c->face, (GenderEthnicity)Random(), false); // create a random company manager face
+ RandomCompanyManagerFaceBits(c->face, (GenderEthnicity)Random(), false, false); // create a random company manager face
SetDefaultCompanySettings(c->index);