summaryrefslogtreecommitdiff
path: root/src/autoreplace_cmd.cpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-08-25 20:10:45 +0000
committersmatz <smatz@openttd.org>2008-08-25 20:10:45 +0000
commitc9bef190436adff1b2b06410f80129171d2d9f49 (patch)
treec1e40a39dc5b512c170457b3ec39d1f8f78adc27 /src/autoreplace_cmd.cpp
parentb60ff46806d6ec9398813beda2a0392e09ebacb4 (diff)
downloadopenttd-c9bef190436adff1b2b06410f80129171d2d9f49.tar.xz
(svn r14174) -Fix: since now, we are 'losing' things, not 'loosing'
Diffstat (limited to 'src/autoreplace_cmd.cpp')
-rw-r--r--src/autoreplace_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/autoreplace_cmd.cpp b/src/autoreplace_cmd.cpp
index 9faf79611..7a2cecc64 100644
--- a/src/autoreplace_cmd.cpp
+++ b/src/autoreplace_cmd.cpp
@@ -181,7 +181,7 @@ static CargoID GetNewCargoTypeForReplace(Vehicle *v, EngineID engine_type)
} else {
if (!HasBit(available_cargo_types, cargo_type)) return CT_INVALID; // We can't refit the vehicle to carry the cargo we want
- if (!VerifyAutoreplaceRefitForOrders(v, engine_type)) return CT_INVALID; // Some refit orders loose their effect
+ if (!VerifyAutoreplaceRefitForOrders(v, engine_type)) return CT_INVALID; // Some refit orders lose their effect
/* Do we have to refit the vehicle, or is it already carrying the right cargo? */
uint16 *default_capacity = GetCapacityOfArticulatedParts(engine_type, v->type);