summaryrefslogtreecommitdiff
path: root/ai.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-05-06 06:56:30 +0000
committertron <tron@openttd.org>2005-05-06 06:56:30 +0000
commitd17476b058fb877484159bec0b725d1be5a6d68f (patch)
treeec6a2e5ec15ed8e58408a2c562f10913bb6382e8 /ai.c
parent203a84dd0b4f1fd7397052d3a645731eaeb5ebd7 (diff)
downloadopenttd-d17476b058fb877484159bec0b725d1be5a6d68f.tar.xz
(svn r2271) CMD_SET_PLAYER_FACE, CMD_SET_PLAYER_COLOR, CMD_INCREASE_LOAN, CMD_DECREASE_LOAN only make sense for the current player, so don't explicitly pass a player number
Diffstat (limited to 'ai.c')
-rw-r--r--ai.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ai.c b/ai.c
index 2cb475997..05f5a82f6 100644
--- a/ai.c
+++ b/ai.c
@@ -3882,14 +3882,14 @@ static void AiAdjustLoan(Player *p)
if (p->player_money > base * 1400) {
// Decrease loan
if (p->current_loan != 0) {
- DoCommandByTile(0, _current_player, 0, DC_EXEC, CMD_DECREASE_LOAN);
+ DoCommandByTile(0, 0, 0, DC_EXEC, CMD_DECREASE_LOAN);
}
} else if (p->player_money < base * 500) {
// Increase loan
if (p->current_loan < _economy.max_loan &&
p->num_valid_stat_ent >= 2 &&
-(p->old_economy[0].expenses+p->old_economy[1].expenses) < base * 60) {
- DoCommandByTile(0, _current_player, 0, DC_EXEC, CMD_INCREASE_LOAN);
+ DoCommandByTile(0, 0, 0, DC_EXEC, CMD_INCREASE_LOAN);
}
}
}