diff options
author | belugas <belugas@openttd.org> | 2008-08-20 01:38:12 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2008-08-20 01:38:12 +0000 |
commit | f2f2bcf23cd8444e6a14bf1d0e3c04d4e034559b (patch) | |
tree | 6535e6cecda9dc1aa99f537f39300637c95640aa /src/ai | |
parent | 77ee09921217eac1540b82978178779eb839d08e (diff) | |
download | openttd-f2f2bcf23cd8444e6a14bf1d0e3c04d4e034559b.tar.xz |
(svn r14105) -Fix: Some typos that are more grammatical errors, as it seems.
Provided by ln
I've added a little fix on currency.cpp too, why not :)
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/trolly/trolly.cpp | 2 | ||||
-rw-r--r-- | src/ai/trolly/trolly.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ai/trolly/trolly.cpp b/src/ai/trolly/trolly.cpp index de392dcca..708753b8b 100644 --- a/src/ai/trolly/trolly.cpp +++ b/src/ai/trolly/trolly.cpp @@ -1244,7 +1244,7 @@ static void AiNew_CheckVehicle(Player *p, Vehicle *v) // When a vehicle is under the 6 months, we don't check for anything if (v->age < 180) return; - // When a vehicle is older then 1 year, it should make money... + // When a vehicle is older than 1 year, it should make money... if (v->age > 360) { // If both years together are not more than AI_MINIMUM_ROUTE_PROFIT, // it is not worth the line I guess... diff --git a/src/ai/trolly/trolly.h b/src/ai/trolly/trolly.h index c25bcb538..ac81dcdff 100644 --- a/src/ai/trolly/trolly.h +++ b/src/ai/trolly/trolly.h @@ -89,7 +89,7 @@ // How much cargo must there not be used in a city before we can build a new station? #define AI_CHECKCITY_NEEDED_CARGO 50 // When there is already a station which takes the same good and the rating of that -// city is higher then this numer, we are not going to attempt to build anything +// city is higher than this numer, we are not going to attempt to build anything // there #define AI_CHECKCITY_CARGO_RATING 50 // But, there is a chance of 1 out of this number, that we do ;) @@ -154,7 +154,7 @@ // How money profit does a vehicle needs to make to stay in order // This is the profit of this year + profit of last year // But also for vehicles that are just one year old. In other words: -// Vehicles of 2 years do easier meet this setting then vehicles +// Vehicles of 2 years do easier meet this setting than vehicles // of one year. This is a very good thing. New vehicles are filtered, // while old vehicles stay longer, because we do get less in return. #define AI_MINIMUM_ROUTE_PROFIT 1000 |