(svn r22540) -Codechange: Rename AcceptancePickup to GoodsEntryStatus.

This commit is contained in:
terkhen
2011-06-04 21:17:07 +00:00
parent 05b125c42c
commit 5bb79b1f46
8 changed files with 27 additions and 27 deletions

View File

@@ -1525,7 +1525,7 @@ bool AfterLoadGame()
FOR_ALL_STATIONS(st) {
for (CargoID c = 0; c < NUM_CARGO; c++) {
st->goods[c].last_speed = 0;
if (st->goods[c].cargo.Count() != 0) SetBit(st->goods[c].acceptance_pickup, GoodsEntry::PICKUP);
if (st->goods[c].cargo.Count() != 0) SetBit(st->goods[c].acceptance_pickup, GoodsEntry::GES_PICKUP);
}
}
}