Fix wall connections

This commit is contained in:
Florian Festi 2016-03-22 23:17:00 +01:00
parent de04981562
commit 7d8111f44a
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ class Layout(Boxes):
while end < lx and self.hwalls[y][end]:
edges.append("f") # e for no ground
lengths.append(self.x[end])
edges.append("eCs"[self.vWalls(end, y)])
edges.append("eCs"[self.vWalls(end+1, y)])
lengths.append(self.thickness)
end += 1