diff options
author | belugas <belugas@openttd.org> | 2008-06-10 16:10:54 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2008-06-10 16:10:54 +0000 |
commit | bb7e9ee138dba156c7ef37b51a6cd31fd550eedb (patch) | |
tree | 59b34e548138b8c3ecaee3bc06a20532fd9f53bb /src | |
parent | 54e7a3b196c4fe22b8618f4c823d7c93881d0c2a (diff) | |
download | openttd-bb7e9ee138dba156c7ef37b51a6cd31fd550eedb.tar.xz |
(svn r13443) -Feature[newGRF]: Add var 0x69 for industries, long format construction date.
Same as var B0, but base year is now 0, instead of 1920
Diffstat (limited to 'src')
-rw-r--r-- | src/newgrf_industries.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/newgrf_industries.cpp b/src/newgrf_industries.cpp index 942c504b7..49c3a0bf8 100644 --- a/src/newgrf_industries.cpp +++ b/src/newgrf_industries.cpp @@ -296,6 +296,8 @@ uint32 IndustryGetVariable(const ResolverObject *object, byte variable, byte par case 0x67: case 0x68: return GetCountAndDistanceOfClosestInstance(parameter, variable == 0x68 ? GB(GetRegister(0x101), 0, 8) : 0, industry); + case 0x69: return industry->construction_date; // Date when built - long format - (in days) + /* Get a variable from the persistent storage */ case 0x7C: return industry->psa.Get(parameter); |