summaryrefslogtreecommitdiff
path: root/ai
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-12-09 17:42:56 +0000
committertruelight <truelight@openttd.org>2005-12-09 17:42:56 +0000
commite9e1c4de5385f0d8ac72de564691bccd395bab08 (patch)
tree001ba67832f920d810bca4a402ba5a9840479250 /ai
parent26a5e120e8c763a444b4f344c33da85dcc830bb8 (diff)
downloadopenttd-e9e1c4de5385f0d8ac72de564691bccd395bab08.tar.xz
(svn r3277) -Fix: lets use the right DoCommand for testing a build (tnx to Igor2Code)
Diffstat (limited to 'ai')
-rw-r--r--ai/ai.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ai/ai.c b/ai/ai.c
index 96f2ec9e1..4e1545e77 100644
--- a/ai/ai.c
+++ b/ai/ai.c
@@ -137,7 +137,7 @@ int32 AI_DoCommandChecked(uint tile, uint32 p1, uint32 p2, uint32 flags, uint pr
uint unique_id = uids[_current_player]++;
int32 res;
- res = AI_DoCommand(tile, p1, p2, flags & ~DC_EXEC, procc);
+ res = DoCommandByTile(tile, p1, p2, flags & ~DC_EXEC, procc);
if (CmdFailed(res))
return CMD_ERROR;