diff options
author | rubidium <rubidium@openttd.org> | 2007-05-25 08:47:40 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-05-25 08:47:40 +0000 |
commit | 9060ab4af1e3e39bb43374af655c476e26307a39 (patch) | |
tree | 50597cfedb78228e87fdb5619378cb6467165a79 /src | |
parent | 0819f3a9a0229186fbd0624f590764553c7e7178 (diff) | |
download | openttd-9060ab4af1e3e39bb43374af655c476e26307a39.tar.xz |
(svn r9918) -Fix: the available roadtypes/railtypes were not updated on GRF updates.
Diffstat (limited to 'src')
-rw-r--r-- | src/engine.cpp | 6 | ||||
-rw-r--r-- | src/newgrf.cpp | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/src/engine.cpp b/src/engine.cpp index 37067bdd2..80b07adca 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -332,6 +332,12 @@ static void NewVehicleAvailable(Engine *e) if (p->is_active) SETBIT(p->avail_railtypes, railtype); } } + if ((index - NUM_TRAIN_ENGINES) < NUM_ROAD_ENGINES) { + /* maybe make another road type available */ + FOR_ALL_PLAYERS(p) { + if (p->is_active) SETBIT(p->avail_roadtypes, HASBIT(EngInfo(index)->misc_flags, EF_ROAD_TRAM) ? ROADTYPE_TRAM : ROADTYPE_ROAD); + } + } AddNewsItem(index, NEWS_FLAGS(NM_CALLBACK, 0, NT_NEW_VEHICLES, DNC_VEHICLEAVAIL), 0, 0); } diff --git a/src/newgrf.cpp b/src/newgrf.cpp index 8f0aac2ec..6095832ed 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -4808,6 +4808,13 @@ void InitDepotWindowBlockSizes(); static void AfterLoadGRFs() { + /* Update the bitmasks for the vehicle lists */ + Player *p; + FOR_ALL_PLAYERS(p) { + p->avail_railtypes = GetPlayerRailtypes(p->index); + p->avail_roadtypes = GetPlayerRoadtypes(p->index); + } + /* Pre-calculate all refit masks after loading GRF files. */ CalculateRefitMasks(); |