summaryrefslogtreecommitdiff
path: root/ai/trolly/trolly.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-11-03 01:18:40 +0000
committerDarkvater <darkvater@openttd.org>2006-11-03 01:18:40 +0000
commitac2b6f39b1f9a1e104fe6859d1a5b7c6afd010f8 (patch)
treeb690e9ee0bf559ff2fc4d85d367241a54bcd86f2 /ai/trolly/trolly.c
parenta9fa6fd5060db97614240788e8f7658bd06f3ae4 (diff)
downloadopenttd-ac2b6f39b1f9a1e104fe6859d1a5b7c6afd010f8.tar.xz
(svn r7048) -Cleanup: DEBUG doesn't need a newline character, use DEBUG instead of printf and the
verb is build/built/built not build/*/build or build/*/builded.
Diffstat (limited to 'ai/trolly/trolly.c')
-rw-r--r--ai/trolly/trolly.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ai/trolly/trolly.c b/ai/trolly/trolly.c
index d952975b9..26a7172ff 100644
--- a/ai/trolly/trolly.c
+++ b/ai/trolly/trolly.c
@@ -993,7 +993,7 @@ static void AiNew_State_BuildStation(Player *p)
p->ainew.state = AI_STATE_BUILD_PATH;
}
if (CmdFailed(res)) {
- DEBUG(ai,0)("[AiNew - BuildStation] Strange but true... station can not be build!");
+ DEBUG(ai,0)("[AiNew - BuildStation] Strange but true... station can not be built!");
p->ainew.state = AI_STATE_NOTHING;
// If the first station _was_ build, destroy it
if (p->ainew.temp != 0)
@@ -1122,7 +1122,7 @@ static void AiNew_State_BuildDepot(Player *p)
res = AiNew_Build_Depot(p, p->ainew.depot_tile, p->ainew.depot_direction, DC_EXEC);
if (CmdFailed(res)) {
- DEBUG(ai,0)("[AiNew - BuildDepot] Strange but true... depot can not be build!");
+ DEBUG(ai,0)("[AiNew - BuildDepot] Strange but true... depot can not be built!");
p->ainew.state = AI_STATE_NOTHING;
return;
}