Should fix index error.

This commit is contained in:
Sakse Dalum 2012-08-12 20:09:17 +02:00
parent 5fe049f585
commit f34d8106ef
2 changed files with 6 additions and 3 deletions

View File

@ -83,6 +83,9 @@ class Level(object):
self._blit_background(window)
for obj in self._sorted_objs():
obj.draw(window)
try:
obj.draw(window)
except IndexError:
print("Skipping frames ...")
self.darkness.draw(window)

View File

@ -507,7 +507,7 @@ class Level1(level.Level):
for i in range(3):
self.objects.append(
CompletionBlock(self, 64 * (door_x - 6 + i), 48 * 4,
CompletionBlock(self, 64 * (door_x - 5 + i), 48 * 4,
self.solution[i], i + 1))
# DRAW THE BACKGROUND