From 2a9574ead22715ae933c194ae131f9e6a3490dd9 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 1 Sep 2009 18:35:24 +0000 Subject: (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(-) (limited to 'src/train_cmd.cpp') diff --git a/src/train_cmd.cpp b/src/train_cmd.cpp index bfaccf2a3..80a88ef48 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; } -- cgit v1.2.3-54-g00ecf