(svn r15490) -Change [API CHANGE]: Remove AIBridge::GetYearAvailable. AIBridge::IsValidBridge now only returns true for available bridges.
This commit is contained in:
@@ -9,16 +9,16 @@
|
||||
|
||||
AIBridgeList::AIBridgeList()
|
||||
{
|
||||
/* Add all bridges, no matter if they are available or not */
|
||||
for (byte j = 0; j < MAX_BRIDGES; j++)
|
||||
if (::GetBridgeSpec(j)->avail_year <= _cur_year)
|
||||
this->AddItem(j);
|
||||
for (byte j = 0; j < MAX_BRIDGES; j++) {
|
||||
if (AIBridge::IsValidBridge(j)) this->AddItem(j);
|
||||
}
|
||||
}
|
||||
|
||||
AIBridgeList_Length::AIBridgeList_Length(uint length)
|
||||
{
|
||||
for (byte j = 0; j < MAX_BRIDGES; j++)
|
||||
if (::GetBridgeSpec(j)->avail_year <= _cur_year)
|
||||
if (length >= (uint)AIBridge::GetMinLength(j) && length <= (uint)AIBridge::GetMaxLength(j))
|
||||
this->AddItem(j);
|
||||
for (byte j = 0; j < MAX_BRIDGES; j++) {
|
||||
if (AIBridge::IsValidBridge(j)) {
|
||||
if (length >= (uint)AIBridge::GetMinLength(j) && length <= (uint)AIBridge::GetMaxLength(j)) this->AddItem(j);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user