Remove the prefixed method name.
This commit is contained in:
committed by
abcdefg30
parent
a4fc9fea3b
commit
b90fecff76
@@ -84,7 +84,7 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
var powerDecision = powerDecisions[sp.Info.OrderName];
|
var powerDecision = powerDecisions[sp.Info.OrderName];
|
||||||
if (powerDecision == null)
|
if (powerDecision == null)
|
||||||
{
|
{
|
||||||
AIUtils.BotDebug("FindAttackLocationToSupportPower, {0} couldn't find powerDecision for {1}", player.PlayerName, sp.Info.OrderName);
|
AIUtils.BotDebug("{0} couldn't find powerDecision for {1}", player.PlayerName, sp.Info.OrderName);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -130,7 +130,7 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
var powerDecision = powerDecisions[readyPower.Info.OrderName];
|
var powerDecision = powerDecisions[readyPower.Info.OrderName];
|
||||||
if (powerDecision == null)
|
if (powerDecision == null)
|
||||||
{
|
{
|
||||||
AIUtils.BotDebug("FindAttackLocationToSupportPower, {0} couldn't find powerDecision for {1}", player.PlayerName, readyPower.Info.OrderName);
|
AIUtils.BotDebug("{0} couldn't find powerDecision for {1}", player.PlayerName, readyPower.Info.OrderName);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -170,7 +170,7 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
var powerDecision = powerDecisions[readyPower.Info.OrderName];
|
var powerDecision = powerDecisions[readyPower.Info.OrderName];
|
||||||
if (powerDecision == null)
|
if (powerDecision == null)
|
||||||
{
|
{
|
||||||
AIUtils.BotDebug("FindAttackLocationToSupportPower, {0} couldn't find powerDecision for {1}", player.PlayerName, readyPower.Info.OrderName);
|
AIUtils.BotDebug("{0} couldn't find powerDecision for {1}", player.PlayerName, readyPower.Info.OrderName);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user