diff options
author | smatz <smatz@openttd.org> | 2008-08-25 20:10:45 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2008-08-25 20:10:45 +0000 |
commit | 1294253d68221d7b232c8d99fb0b9608779d01f1 (patch) | |
tree | c1e40a39dc5b512c170457b3ec39d1f8f78adc27 /src/autoreplace_cmd.cpp | |
parent | 18032db8c1ed1119683da1be5a130ed1711469ac (diff) | |
download | openttd-1294253d68221d7b232c8d99fb0b9608779d01f1.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.cpp | 2 |
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); |