Block offset should be properly set now.

This commit is contained in:
Sakse Dalum 2012-08-08 15:04:08 +02:00
parent 12cfda78f1
commit db5b23d0e0
1 changed files with 1 additions and 1 deletions

View File

@ -51,6 +51,6 @@ class Block(worldobject.WorldObject):
def draw(self, window):
window.blit(self.img, (self.x - 32 - self.level.camera_x,
self.y - self.img.get_size()[1]
self.y - self.img.get_size()[1] + 24
- self.level.camera_y))