Fix wall adjacency for multi-cell neighbours.

This commit is contained in:
Paul Chote
2015-11-20 22:32:08 +00:00
committed by teees
parent 65e1e301f4
commit 1de1458fda
2 changed files with 12 additions and 12 deletions

View File

@@ -120,7 +120,7 @@ namespace OpenRA.Mods.Common.Traits
[RequireExplicitImplementation]
interface IWallConnector
{
bool AdjacentWallCanConnect(Actor self, CPos wallLocation, string wallType);
bool AdjacentWallCanConnect(Actor self, CPos wallLocation, string wallType, out CVec facing);
void SetDirty();
}
}