From 8877d1181515b922e559515ec0bb53d92d43b931 Mon Sep 17 00:00:00 2001 From: truelight Date: Thu, 8 Mar 2007 20:50:27 +0000 Subject: (svn r9070) -Fix [FS#404]: if bribe failed and you didn't pick up cargo yet, you wouldn't ever be able to do so for a given station --- src/station.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/station.h') diff --git a/src/station.h b/src/station.h index bced6a2be..3a4ef31cf 100644 --- a/src/station.h +++ b/src/station.h @@ -11,13 +11,14 @@ #include "newgrf_station.h" static const StationID INVALID_STATION = 0xFFFF; +static const byte INITIAL_STATION_RATING = 175; struct GoodsEntry { GoodsEntry() : waiting_acceptance(0), unload_pending(0), days_since_pickup(0), - rating(175), + rating(INITIAL_STATION_RATING), enroute_from(INVALID_STATION), enroute_from_xy(INVALID_TILE), last_speed(0), -- cgit v1.2.3-54-g00ecf