summaryrefslogtreecommitdiff
path: root/console_cmds.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 /console_cmds.c
parent9e755051a1ca02029c4279e7588553a9d9dc54f2 (diff)
downloadopenttd-893d4ba9d4040b098bc6e0ac04068cda8ff608a2.tar.xz
(svn r6002) -Cleanup: remove the now redundant BASE_YEAR constant.
Diffstat (limited to 'console_cmds.c')
-rw-r--r--console_cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/console_cmds.c b/console_cmds.c
index ae716d79a..f1e0ca2c2 100644
--- a/console_cmds.c
+++ b/console_cmds.c
@@ -1202,7 +1202,7 @@ DEF_CONSOLE_CMD(ConPlayers)
GetString(buffer, STR_00D1_DARK_BLUE + _player_colors[p->index]);
IConsolePrintF(8, "#:%d(%s) Company Name: '%s' Year Founded: %d Money: %d Loan: %d Value: %" OTTD_PRINTF64 "d (T:%d, R:%d, P:%d, S:%d)",
- p->index + 1, buffer, _network_player_info[p->index].company_name, BASE_YEAR + p->inaugurated_year, p->player_money, p->current_loan, CalculateCompanyValue(p),
+ p->index + 1, buffer, _network_player_info[p->index].company_name, p->inaugurated_year, p->player_money, p->current_loan, CalculateCompanyValue(p),
/* trains */ _network_player_info[p->index].num_vehicle[0],
/* lorry + bus */ _network_player_info[p->index].num_vehicle[1] + _network_player_info[p->index].num_vehicle[2],
/* planes */ _network_player_info[p->index].num_vehicle[3],