diff options
author | stormcone <48624099+stormcone@users.noreply.github.com> | 2021-03-11 21:40:48 +0100 |
---|---|---|
committer | Charles Pigott <charlespigott@googlemail.com> | 2021-03-11 21:35:10 +0000 |
commit | 9c5a7d3a572d02813e6bab83004334b9a154a62b (patch) | |
tree | d806e4e550c8a47479a32d6575a5faf8647b6a9b /src | |
parent | 3cb2dd4889daeec76239e10d2e06d040b405167e (diff) | |
download | openttd-9c5a7d3a572d02813e6bab83004334b9a154a62b.tar.xz |
Fix #8733: Can't buy train engine when the "Engines only" filter is active
Diffstat (limited to 'src')
-rw-r--r-- | src/build_vehicle_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build_vehicle_gui.cpp b/src/build_vehicle_gui.cpp index 58d6ea4e6..a7a7d8042 100644 --- a/src/build_vehicle_gui.cpp +++ b/src/build_vehicle_gui.cpp @@ -1472,7 +1472,7 @@ struct BuildVehicleWindow : Window { if (sel_eng != INVALID_ENGINE) { CommandCallback *callback = (this->vehicle_type == VEH_TRAIN && RailVehInfo(sel_eng)->railveh_type == RAILVEH_WAGON) ? CcBuildWagon : CcBuildPrimaryVehicle; CargoID cargo = this->cargo_filter[this->cargo_filter_criteria]; - if (cargo == CF_ANY) cargo = CF_NONE; + if (cargo == CF_ANY || cargo == CF_ENGINES) cargo = CF_NONE; DoCommandP(this->window_number, sel_eng | (cargo << 24), 0, GetCmdBuildVeh(this->vehicle_type), callback); } break; |