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

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
rubidium 15 years ago
parent 1d7a75032f
commit 7c4e8421be

@ -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);

Loading…
Cancel
Save