summaryrefslogtreecommitdiff
path: root/ai_build.c
diff options
context:
space:
mode:
Diffstat (limited to 'ai_build.c')
-rw-r--r--ai_build.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ai_build.c b/ai_build.c
index f53d7793f..e4dcf42cd 100644
--- a/ai_build.c
+++ b/ai_build.c
@@ -5,6 +5,7 @@
#include "command.h"
#include "ai.h"
#include "engine.h"
+#include "station.h"
// Build HQ
// Params:
@@ -28,9 +29,9 @@ int AiNew_Build_Station(Player *p, byte type, uint tile, byte length, byte numtr
if (type == AI_TRAIN)
return DoCommandByTile(tile, direction + (numtracks << 8) + (length << 16), 0, flag | DC_AUTO | DC_NO_WATER, CMD_BUILD_RAILROAD_STATION);
else if (type == AI_BUS)
- return DoCommandByTile(tile, direction, 0, flag | DC_AUTO | DC_NO_WATER, CMD_BUILD_BUS_STATION);
+ return DoCommandByTile(tile, direction, RS_BUS, flag | DC_AUTO | DC_NO_WATER, CMD_BUILD_ROAD_STOP);
else
- return DoCommandByTile(tile, direction, 0, flag | DC_AUTO | DC_NO_WATER, CMD_BUILD_TRUCK_STATION);
+ return DoCommandByTile(tile, direction, RS_TRUCK, flag | DC_AUTO | DC_NO_WATER, CMD_BUILD_ROAD_STOP);
}
// Builds a brdige. The second best out of the ones available for this player