From: Erik V. <ev...@us...> - 2011-11-22 23:15:24
|
data/1835/CompanyManager.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) New commits: commit 92e0d2c13973185cb85ede8b9a83250c1295a610 Author: Erik Vos <eri...@xs...> Date: Wed Nov 23 00:14:38 2011 +0100 Fix: BA home token is now laid in its first OR. This fixes the problem that, if the BA has floated but not yet operated, its home token is already on the map and must find a place when another player lays a green XX tile on the BA home hex. In this case, the wrong player was asked for that place. diff --git a/data/1835/CompanyManager.xml b/data/1835/CompanyManager.xml index dcc124d..7127047 100644 --- a/data/1835/CompanyManager.xml +++ b/data/1835/CompanyManager.xml @@ -170,7 +170,10 @@ </Company> <Company name="BA" longname="Badische Eisenbahn" type="Major" startspace="B4" available="no" tokens="2" fgColour="FFFFFF" bgColour="808000" alias="Bad"> - <Home hex="L6"/> + <Home hex="L6" city="0"/> + <BaseTokens> + <HomeBase lay="firstOR"/> + </BaseTokens> <Certificate type="President" shares="2"/> <Certificate shares="1" number="6"/> <Certificate shares="2" number="1"/> |