summaryrefslogtreecommitdiff
path: root/src/station_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/station_base.h')
-rw-r--r--src/station_base.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/station_base.h b/src/station_base.h
index 07d1d2294..322a7dc8e 100644
--- a/src/station_base.h
+++ b/src/station_base.h
@@ -114,6 +114,15 @@ struct GoodsEntry {
* @return true if vehicle tried to load.
*/
bool HasVehicleEverTriedLoading() const { return this->last_speed != 0; }
+
+ /**
+ * Does this cargo have a rating at this station?
+ * @return true if the cargo has a rating, i.e. pickup has been attempted.
+ */
+ inline bool HasRating() const
+ {
+ return HasBit(this->acceptance_pickup, GES_PICKUP);
+ }
};
/** All airport-related information. Only valid if tile != INVALID_TILE. */