Fixed rolling stone overanxious transpose bug.

This commit is contained in:
Niels Serup
2012-08-09 14:23:08 +02:00
parent 781573dd9d
commit f05a1ab895
3 changed files with 13 additions and 9 deletions

View File

@@ -90,7 +90,7 @@ class Level3(level.Level):
pos_colour = {}
for box, (x, y) in zip(boxes, itertools.product(range(3, 6), range(3, 6))):
self.tiles.append(tile.Tile(self, x * 64, (y + 1) * 48, self.imgs['ground1']))
self.tiles.append(tile.Tile(self, x * 64, y * 48, self.imgs['ground1']))
pos_colour[(x, y)] = box
blocks = [ActionBlock(self, 64 * i, 0, action=None, movable=True)