diff --git a/src/order_gui.cpp b/src/order_gui.cpp index f6a129c1ca..d494d3fb3d 100644 --- a/src/order_gui.cpp +++ b/src/order_gui.cpp @@ -425,7 +425,7 @@ static std::pair GetOrderCmdFromTile(const Veh v->type == VEH_TRAIN && IsTileOwner(tile, _local_company)) { order.MakeGoToWaypoint(GetStationIndex(tile)); - if (_settings_client.gui.new_nonstop != citymania::_fn_mod) order.SetNonStopType({}); + if (_settings_client.gui.new_nonstop != citymania::_fn_mod) order.SetNonStopType({OrderNonStopFlag::NoIntermediate, OrderNonStopFlag::NoDestination}); return {order, citymania::FeederOrderMod::None}; } @@ -434,7 +434,7 @@ static std::pair GetOrderCmdFromTile(const Veh v->type == VEH_ROAD && IsTileOwner(tile, _local_company)) { order.MakeGoToWaypoint(GetStationIndex(tile)); - if (_settings_client.gui.new_nonstop != _ctrl_pressed) order.SetNonStopType({}); + if (_settings_client.gui.new_nonstop != _ctrl_pressed) order.SetNonStopType({OrderNonStopFlag::NoIntermediate, OrderNonStopFlag::NoDestination}); return std::make_pair(order, citymania::FeederOrderMod::None); }