diff options
author | maedhros <maedhros@openttd.org> | 2007-08-06 11:58:15 +0000 |
---|---|---|
committer | maedhros <maedhros@openttd.org> | 2007-08-06 11:58:15 +0000 |
commit | b17975d1f226e7c83f457c32221b9569622210e3 (patch) | |
tree | fc744b176f25e0066180e9db19faf062a4d7808c /src | |
parent | f09ebb5ec262dc45d8bdb982d7ab95157aa804c9 (diff) | |
download | openttd-b17975d1f226e7c83f457c32221b9569622210e3.tar.xz |
(svn r10808) -Fix (r10353): Make sure spectators can't open infrastructure building menus.
Diffstat (limited to 'src')
-rw-r--r-- | src/vehicle.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vehicle.cpp b/src/vehicle.cpp index 78b857c35..4ba949f39 100644 --- a/src/vehicle.cpp +++ b/src/vehicle.cpp @@ -2554,6 +2554,7 @@ bool CanBuildVehicleInfrastructure(VehicleType type) { assert(IsPlayerBuildableVehicleType(type)); + if (!IsValidPlayer(_current_player)) return false; if (_patches.always_build_infrastructure) return true; UnitID max; |