(svn r15015) -Fix (r14919): Distant-join always failed for docks. Based on patch by PhilSophus.

This commit is contained in:
frosch 2009-01-12 15:29:40 +00:00
parent 508fc29221
commit 9a80c0b1de
1 changed files with 1 additions and 1 deletions

View File

@ -1206,7 +1206,7 @@ static const WindowDesc _select_station_desc = {
*/
static bool StationJoinerNeeded(CommandContainer cmd, int w, int h)
{
if (CmdFailed(DoCommand(&cmd, DC_NO_WATER | DC_AUTO))) return false;
if (CmdFailed(DoCommand(&cmd, CommandFlagsToDCFlags(GetCommandFlags(cmd.cmd))))) return false;
/* Only show selection if distant join is enabled in the settings */
if (!_settings_game.station.distant_join_stations) return false;