Changeset - r18452:521c91d2118e
[Not reviewed]
master
0 2 0
truebrain - 13 years ago 2011-11-23 16:25:38
truebrain@openttd.org
(svn r23306) -Fix (r23302): forgot to mention AITownEffectList in the Changelog
2 files changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/ai/api/ai_cargo.cpp
Show inline comments
 
@@ -22,7 +22,7 @@
 

	
 
/* static */ bool AICargo::IsValidTownEffect(TownEffect towneffect_type)
 
{
 
	return (towneffect_type >= (TownEffect)TE_BEGIN && towneffect_type < (TownEffect)TE_END);
 
	return (towneffect_type >= (::TownEffect)TE_BEGIN && towneffect_type < (::TownEffect)TE_END);
 
}
 

	
 
/* static */ char *AICargo::GetCargoLabel(CargoID cargo_type)
src/ai/api/ai_changelog.hpp
Show inline comments
 
@@ -39,6 +39,7 @@
 
 * \li AITown::GetGrowthRate
 
 * \li AITown::GetLastMonthReceived
 
 * \li AITown::GetTownAuthority
 
 * \li AITownEffectList (to walk over all available town effects)
 
 * \li AIVehicle::ERR_VEHICLE_TOO_LONG in case vehicle length limit is reached
 
 *
 
 * API renames:
0 comments (0 inline, 0 general)