From 2a9574ead22715ae933c194ae131f9e6a3490dd9 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 1 Sep 2009 18:35:24 +0000 Subject: [PATCH] (svn r17352) -Fix [FS#3162]: trains wouldn't show smoke if the load/unload counter wasn't 0, though there doesn't seem to be a reason to check that variable anyhow anymore --- src/train_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/train_cmd.cpp b/src/train_cmd.cpp index bfaccf2a37..80a88ef484 100644 --- a/src/train_cmd.cpp +++ b/src/train_cmd.cpp @@ -2300,7 +2300,7 @@ static void HandleLocomotiveSmokeCloud(const Train *v) { bool sound = false; - if ((v->vehstatus & VS_TRAIN_SLOWING) || v->load_unload_time_rem != 0 || v->cur_speed < 2) { + if ((v->vehstatus & VS_TRAIN_SLOWING) || v->cur_speed < 2) { return; }