summaryrefslogtreecommitdiff
path: root/src/vehicle.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-02-04 16:45:07 +0000
committerrubidium <rubidium@openttd.org>2009-02-04 16:45:07 +0000
commita49197f522ea4377c731c69ac6e4117c49170682 (patch)
tree4a5fe41066de010bd441a15fc54033301d5a6f07 /src/vehicle.cpp
parentce1fcfd8c03f0f4e46915abfc96d635d856421cc (diff)
downloadopenttd-a49197f522ea4377c731c69ac6e4117c49170682.tar.xz
(svn r15336) -Fix: do not use _current_company in the GUI as there are no guarantees that _current_company is the same as _local_company.
Diffstat (limited to 'src/vehicle.cpp')
-rw-r--r--src/vehicle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicle.cpp b/src/vehicle.cpp
index 2e5f87eea..c53c13049 100644
--- a/src/vehicle.cpp
+++ b/src/vehicle.cpp
@@ -1786,7 +1786,7 @@ bool CanBuildVehicleInfrastructure(VehicleType type)
{
assert(IsCompanyBuildableVehicleType(type));
- if (!IsValidCompanyID(_current_company)) return false;
+ if (!IsValidCompanyID(_local_company)) return false;
if (_settings_client.gui.always_build_infrastructure) return true;
UnitID max;