summaryrefslogtreecommitdiff
path: root/src/train_cmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/train_cmd.cpp')
-rw-r--r--src/train_cmd.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/train_cmd.cpp b/src/train_cmd.cpp
index a85b16f95..172ca934f 100644
--- a/src/train_cmd.cpp
+++ b/src/train_cmd.cpp
@@ -1644,6 +1644,10 @@ static void MarkTrainAsStuck(Train *v)
if (!HasBit(v->flags, VRF_TRAIN_STUCK)) {
/* It is the first time the problem occured, set the "train stuck" flag. */
SetBit(v->flags, VRF_TRAIN_STUCK);
+
+ /* When loading the vehicle is already stopped. No need to change that. */
+ if (v->current_order.IsType(OT_LOADING)) return;
+
v->load_unload_time_rem = 0;
/* Stop train */