summaryrefslogtreecommitdiff
path: root/economy.c
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2006-08-20 19:05:28 +0000
committerrubidium <rubidium@openttd.org>2006-08-20 19:05:28 +0000
commit893d4ba9d4040b098bc6e0ac04068cda8ff608a2 (patch)
tree32670a1d6837e9b4789cc69398c1777482037940 /economy.c
parent9e755051a1ca02029c4279e7588553a9d9dc54f2 (diff)
downloadopenttd-893d4ba9d4040b098bc6e0ac04068cda8ff608a2.tar.xz
(svn r6002) -Cleanup: remove the now redundant BASE_YEAR constant.
Diffstat (limited to 'economy.c')
-rw-r--r--economy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/economy.c b/economy.c
index 1987884c6..602417648 100644
--- a/economy.c
+++ b/economy.c
@@ -1394,7 +1394,7 @@ int LoadUnloadVehicle(Vehicle *v)
// if last speed is 0, we treat that as if no vehicle has ever visited the station.
ge->last_speed = min(t, 255);
- ge->last_age = (_cur_year - BASE_YEAR) - v->build_year;
+ ge->last_age = _cur_year - v->build_year;
// If there's goods waiting at the station, and the vehicle
// has capacity for it, load it on the vehicle.
@@ -1546,7 +1546,7 @@ int32 CmdBuyShareInCompany(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
p = GetPlayer(p1);
/* Protect new companies from hostile takeovers */
- if ((_cur_year - BASE_YEAR) - p->inaugurated_year < 6) return_cmd_error(STR_7080_PROTECTED);
+ if (_cur_year - p->inaugurated_year < 6) return_cmd_error(STR_7080_PROTECTED);
/* Those lines are here for network-protection (clients can be slow) */
if (GetAmountOwnedBy(p, OWNER_SPECTATOR) == 0) return 0;