summaryrefslogtreecommitdiff
path: root/src/ship_cmd.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2009-02-03 20:39:06 +0000
committerfrosch <frosch@openttd.org>2009-02-03 20:39:06 +0000
commit9c4c0ff3a190869c1a217427584d5d6034373c07 (patch)
tree1a670a0075445d14655ef1c60c222a4c65b69612 /src/ship_cmd.cpp
parentff2720c56ed1a40f9d03b73a73f38e60976f63a5 (diff)
downloadopenttd-9c4c0ff3a190869c1a217427584d5d6034373c07.tar.xz
(svn r15326) -Fix: Old-ai-ishm when refitting vehicles.
Diffstat (limited to 'src/ship_cmd.cpp')
-rw-r--r--src/ship_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ship_cmd.cpp b/src/ship_cmd.cpp
index 275b9b9dc..d18732440 100644
--- a/src/ship_cmd.cpp
+++ b/src/ship_cmd.cpp
@@ -933,7 +933,7 @@ CommandCost CmdRefitShip(TileIndex tile, uint32 flags, uint32 p1, uint32 p2, con
}
_returned_refit_capacity = capacity;
- if (IsHumanCompany(v->owner) && new_cid != v->cargo_type) {
+ if (new_cid != v->cargo_type) {
cost = GetRefitCost(v->engine_type);
}