(svn r21145) -Fix: station list wasn't updated when a new cargo got a rating

This commit is contained in:
rubidium
2010-11-11 10:34:44 +00:00
parent e745bd9815
commit 67d071d033
2 changed files with 9 additions and 2 deletions

View File

@@ -3201,7 +3201,11 @@ static uint UpdateStationWaiting(Station *st, CargoID type, uint amount, SourceT
if (amount == 0) return 0;
ge.cargo.Append(new CargoPacket(st->index, st->xy, amount, source_type, source_id));
SetBit(ge.acceptance_pickup, GoodsEntry::PICKUP);
if (!HasBit(ge.acceptance_pickup, GoodsEntry::PICKUP)) {
InvalidateWindowData(WC_STATION_LIST, st->index);
SetBit(ge.acceptance_pickup, GoodsEntry::PICKUP);
}
TriggerStationAnimation(st, st->xy, SAT_NEW_CARGO, type);
AirportAnimationTrigger(st, AAT_STATION_NEW_CARGO, type);