(svn r2820) -Fix: [autoreplace] fixed issue introduced in 2817 where autoreplace failed if new engine is cheaper than the old one (peter1138)

This commit is contained in:
bjarni 2005-08-06 19:12:44 +00:00
parent 03e860d06d
commit b0f307365a
1 changed files with 1 additions and 1 deletions

View File

@ -1442,7 +1442,7 @@ int32 ReplaceVehicle(Vehicle *v)
/* Check if there is money for the upgrade.. if not, give a nice news-item
(that is needed, because this CMD is called automaticly) */
if ( p->money64 < (p->engine_renew_money + build_cost + rear_engine_cost - v->value)) {
if ( p->money64 < (int32)(p->engine_renew_money + build_cost + rear_engine_cost - v->value)) {
if (( _local_player == v->owner ) && ( v->unitnumber != 0 )) { //v->unitnumber = 0 for train cars
int message;
SetDParam(0, v->unitnumber);