Disable lane bias on gunboat and lst

This commit is contained in:
Paul Chote
2010-08-21 21:40:52 +12:00
parent c35e3b4bd7
commit f38e4d27be
3 changed files with 30 additions and 7 deletions

View File

@@ -61,13 +61,19 @@ namespace OpenRA
return this;
}
public PathSearch WithoutLaneBias()
{
LaneBias = 0f;
return this;
}
public PathSearch FromPoint(int2 from)
{
AddInitialCell( self.World, from );
return this;
}
const float LaneBias = .5f;
float LaneBias = .5f;
public int2 Expand( World world )
{