summaryrefslogtreecommitdiff
path: root/src/station.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-06-22 17:34:04 +0000
committerrubidium <rubidium@openttd.org>2007-06-22 17:34:04 +0000
commitdb097a94dbfe808d35f9de08fc32438f83407802 (patch)
treeb2be9aed7a4563b0236d4cd6ae268166c9719e35 /src/station.h
parent60c61e51166df8bf34fd759215e72fbece74eb7b (diff)
downloadopenttd-db097a94dbfe808d35f9de08fc32438f83407802.tar.xz
(svn r10269) -Fix [FS#912]: station ratings were shown for all cargos instead of only the cargos that have been transported.
Diffstat (limited to 'src/station.h')
-rw-r--r--src/station.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/station.h b/src/station.h
index 10ba050c1..25f77e7d2 100644
--- a/src/station.h
+++ b/src/station.h
@@ -20,7 +20,7 @@ static const byte INITIAL_STATION_RATING = 175;
struct GoodsEntry {
GoodsEntry() :
acceptance(false),
- days_since_pickup(0),
+ days_since_pickup(255),
rating(INITIAL_STATION_RATING),
last_speed(0),
last_age(255)