Minor fix

This commit is contained in:
2021-04-06 00:20:11 +03:00
parent 5910f8d8f4
commit 8cde6fc6bd
-2
View File
@@ -180,7 +180,6 @@ class Drakora():
for player in self.players:
for collision in self.player.getCollisionBoxes():
pygame.draw.rect(self.screen, (255, 0, 0), collision.rect, 1)
# pygame.draw.rect(self.screen, (255, 0, 0), player.rect, 1)
for enemy in self.enemies:
pygame.draw.rect(self.screen, (255, 0, 0), enemy.rect, 1)
for floor in self.floors:
@@ -260,7 +259,6 @@ class Drakora():
def doCheats(self):
self.drawBoxes = True
if self.isPressedKeysUpdated:
pressedKeysStr = ''.join(self.pressedKeys)