(svn r23386) -Fix: debug script related events to 'script' (removes 'ai')

This commit is contained in:
truebrain
2011-12-01 12:04:10 +00:00
parent fedeba5f00
commit a8b22e5292
15 changed files with 27 additions and 27 deletions

View File

@@ -51,7 +51,7 @@
/* static */ int32 ScriptStation::GetCoverageRadius(ScriptStation::StationType station_type)
{
if (station_type == STATION_AIRPORT) {
DEBUG(ai, 0, "GetCoverageRadius(): coverage radius of airports needs to be requested via ScriptAirport::GetAirportCoverageRadius(), as it requires AirportType");
DEBUG(script, 0, "GetCoverageRadius(): coverage radius of airports needs to be requested via ScriptAirport::GetAirportCoverageRadius(), as it requires AirportType");
return -1;
}
if (!HasExactlyOneBit(station_type)) return -1;