(svn r18590) -Fix [FS#3397]: too strict assert was triggered

This commit is contained in:
rubidium 2009-12-21 17:45:02 +00:00
parent 1d7a75032f
commit 7c4e8421be

View File

@ -181,7 +181,7 @@ byte GetBestFittingSubType(Vehicle *v_from, Vehicle *v_for)
} }
/* It has to be possible for v_for to carry the cargo of v_from. */ /* It has to be possible for v_for to carry the cargo of v_from. */
assert(HasBit(e_for->info.refit_mask, v_from->cargo_type)); if (!HasBit(e_for->info.refit_mask, v_from->cargo_type)) return 0;
StringID expected_string = GetCargoSubtypeText(v_from); StringID expected_string = GetCargoSubtypeText(v_from);