(svn r3093) -Fix: [autoreplace] fixed issue where the money limit message showed up in some cases when no replace was needed

This commit is contained in:
bjarni 2005-10-27 19:30:40 +00:00
parent 203726ed34
commit 1cc5379706
1 changed files with 1 additions and 1 deletions

View File

@ -1655,7 +1655,7 @@ Vehicle * MaybeReplaceVehicle(Vehicle *v)
} while (w->type == VEH_Train && (w=w->next) != NULL);
if (!(flags & DC_EXEC) && (CmdFailed(temp_cost) || p->money64 < (int32)(cost + p->engine_renew_money) || cost == 0)) {
if (p->money64 < (int32)(cost + p->engine_renew_money) && ( _local_player == v->owner )) {
if (p->money64 < (int32)(cost + p->engine_renew_money) && ( _local_player == v->owner ) && cost != 0) {
StringID message;
SetDParam(0, v->unitnumber);
switch (v->type) {