some small changes to make it actually *work*.

This commit is contained in:
Chris Forbes
2010-03-03 22:12:31 +13:00
parent 6236acd35b
commit bdd3426e59
2 changed files with 5 additions and 2 deletions

View File

@@ -104,7 +104,7 @@ namespace OpenRA.Traits
public int GetIdealDensity(int x, int y)
{
return (GetAdjacentCellsWith(content[x, y].type, x, y) *
content[x, y].image.Length) / 9;
(content[x, y].image.Length - 1)) / 9;
}
public void AddResource(ResourceTypeInfo info, int i, int j, int n)
@@ -130,7 +130,10 @@ namespace OpenRA.Traits
if (type == null) return null;
if (--content[p.X, p.Y].density < 0)
{
content[p.X, p.Y].type = null;
content[p.X, p.Y].image = null;
}
return type;
}