X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fscenes%2Flose.py;h=be9b60309a145ccf7db53b38b63af99f3731b27d;hb=4c8d6169da3babec7982b14bf6647d3fbe268399;hp=714eaf6f8aa5c7a6fc4d635b16bd53d1657f362d;hpb=2a3de29aeb0e924ee03ce864222d7228e02a506e;p=naja.git diff --git a/naja/scenes/lose.py b/naja/scenes/lose.py index 714eaf6..be9b603 100644 --- a/naja/scenes/lose.py +++ b/naja/scenes/lose.py @@ -24,19 +24,17 @@ class LoseScene(Scene): (0, 0), "screens/you_lost.png") self.add(background) - - #self.add(TextWidget( - # (50, 50), 'You lost!', colour=PALETTE.WHITE)) + y_offset = 250 if self.state.gameboard.has_cheated: self.add(TextWidget( - (50, 250), 'Even with cheats on.', colour=PALETTE.ORANGE)) + (50, y_offset), 'Even with cheats on.', colour=PALETTE.ORANGE)) + y_offset += 50 self.add(TextBoxWidget( - (50, 300), '\n\n'.join([ + (50, y_offset), '\n\n'.join([ "Something went terribly wrong.", "You should re-evaluate your life choices.", - "", "Press ESC to return to the menu", ]), fontsize=32, colour='white', padding=1, border=1,