summaryrefslogtreecommitdiff
path: root/src/newgrf_station.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/newgrf_station.cpp')
-rw-r--r--src/newgrf_station.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_station.cpp b/src/newgrf_station.cpp
index cea387879..08f8e7932 100644
--- a/src/newgrf_station.cpp
+++ b/src/newgrf_station.cpp
@@ -408,7 +408,7 @@ uint32 Station::GetNewGRFVariable(const ResolverObject *object, byte variable, b
/* Handle cargo variables with parameter, 0x60 to 0x65 and 0x69 */
if ((variable >= 0x60 && variable <= 0x65) || variable == 0x69) {
- CargoID c = GetCargoTranslation(parameter, object->u.station.statspec->grf_prop.grffile);
+ CargoID c = GetCargoTranslation(parameter, object->grffile);
if (c == CT_INVALID) return 0;
const GoodsEntry *ge = &this->goods[c];