diff --git a/Drakora.pyw b/Drakora.pyw index 144264e..8693c67 100644 --- a/Drakora.pyw +++ b/Drakora.pyw @@ -58,6 +58,7 @@ class Drakora(): self.speedUp() self.speedUpLabelCD = self.targetFps + def getFont(self): return self.font diff --git a/EndSceen.py b/EndSceen.py index 717bb54..d7be1c6 100644 --- a/EndSceen.py +++ b/EndSceen.py @@ -145,7 +145,6 @@ class EndSceen(): self.fontLeaderBoard, (255, 255, 255), (self.game.getScreenWidth()/2,100 + j*50)) - self.renderText(' {0:>3} {1:^10} {2:>6} {3:>8} '.format( '..','.....', '..', '.....' ), diff --git a/StandingEnemy.py b/StandingEnemy.py index 8dad015..47337da 100644 --- a/StandingEnemy.py +++ b/StandingEnemy.py @@ -147,7 +147,6 @@ class StandingEnemy(Enemy): for image in array: image.set_colorkey((255,0,255)) - self.subtype = random.randint(0, len(StandingEnemy.images) - 1) self.image = random.choice(StandingEnemy.images[self.subtype])