tweaked spacing on win and lose screens
[naja.git] / naja / scenes / lose.py
index 7455fdf60387ad39529151ecbc33b117795b6394..be9b60309a145ccf7db53b38b63af99f3731b27d 100644 (file)
@@ -24,15 +24,17 @@ class LoseScene(Scene):
             (0, 0), "screens/you_lost.png")
         self.add(background)
 
+        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,