From 63d5c304b9ce5545666450ff215383fe1b5fc2ef Mon Sep 17 00:00:00 2001 From: yexo Date: Wed, 26 Aug 2009 16:30:24 +0000 Subject: [PATCH] (svn r17289) -Fix (r17214): for AIs it's STATION_INVALID, not INVALID_STATION --- bin/ai/compat_0.7.nut | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/ai/compat_0.7.nut b/bin/ai/compat_0.7.nut index c38234a3a0..8020d57b2a 100644 --- a/bin/ai/compat_0.7.nut +++ b/bin/ai/compat_0.7.nut @@ -39,11 +39,11 @@ AISubsidy.SourceIsTown <- function(subsidy_id) AISubsidy.GetSource <- function(subsidy_id) { AILog.Warning("AISubsidy::GetSource is deprecated and will be removed soon, please use AISubsidy::GetSourceIndex instead."); - if (!AISubsidy.IsValidSubsidy(subsidy_id)) return AIBaseStation.INVALID_STATION; + if (!AISubsidy.IsValidSubsidy(subsidy_id)) return AIBaseStation.STATION_INVALID; if (AISubsidy.IsAwarded(subsidy_id)) { - AILog.Error("AISubsidy::GetSource returned INVALID_STATION due to internal changes in the Subsidy logic."); - return AIBaseStation.INVALID_STATION; + AILog.Error("AISubsidy::GetSource returned STATION_INVALID due to internal changes in the Subsidy logic."); + return AIBaseStation.STATION_INVALID; } return AISubsidy.GetSourceIndex(subsidy_id); @@ -60,11 +60,11 @@ AISubsidy.DestinationIsTown <- function(subsidy_id) AISubsidy.GetDestination <- function(subsidy_id) { AILog.Warning("AISubsidy::GetDestination is deprecated and will be removed soon, please use AISubsidy::GetDestinationIndex instead."); - if (!AISubsidy.IsValidSubsidy(subsidy_id)) return AIBaseStation.INVALID_STATION; + if (!AISubsidy.IsValidSubsidy(subsidy_id)) return AIBaseStation.STATION_INVALID; if (AISubsidy.IsAwarded(subsidy_id)) { - AILog.Error("AISubsidy::GetDestination returned INVALID_STATION due to internal changes in the Subsidy logic."); - return AIBaseStation.INVALID_STATION; + AILog.Error("AISubsidy::GetDestination returned STATION_INVALID due to internal changes in the Subsidy logic."); + return AIBaseStation.STATION_INVALID; } return AISubsidy.GetDestinationIndex(subsidy_id);