summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-04-05 19:51:51 +0000
committerrubidium <rubidium@openttd.org>2008-04-05 19:51:51 +0000
commitb5a73c77deef0683e1baacd0cd465c0132bf74cd (patch)
tree689b9f2f13fa95c720302cff539332350fe75fb4 /src
parented2acd6f3da6572839e57423f95625093f245aa1 (diff)
downloadopenttd-b5a73c77deef0683e1baacd0cd465c0132bf74cd.tar.xz
(svn r12581) -Fix (r12580): trains would not stop correctly on intermediate stations when non-stop was not enabled.
Diffstat (limited to 'src')
-rw-r--r--src/order_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/order_cmd.cpp b/src/order_cmd.cpp
index 775e08f0f..723d56fec 100644
--- a/src/order_cmd.cpp
+++ b/src/order_cmd.cpp
@@ -1429,7 +1429,7 @@ bool Order::ShouldStopAtStation(const Vehicle *v, StationID station) const
type == OT_GOTO_STATION && // Do stop only when going to a station
/* Finally do stop when the non-stop flag is not set, or when we should stop at
* this station according to the new_nonstop setting. */
- (!this->flags & OFB_NON_STOP || ((this->dest != station) == _patches.new_nonstop));
+ (!(this->flags & OFB_NON_STOP) || ((this->dest != station) == _patches.new_nonstop));
}
void InitializeOrders()