changeset 573:c01e1e329b47

Add a sentence to help. Tweak help display
author Neil Muller <drnlmuller@gmail.com>
date Wed, 21 Nov 2012 13:38:01 +0200
parents 84616c7db2e7
children e6344f57886e
files data/editor_help.txt mamba/habitats/editor.py
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/data/editor_help.txt	Tue Nov 20 23:37:46 2012 +0200
+++ b/data/editor_help.txt	Wed Nov 21 13:38:01 2012 +0200
@@ -20,5 +20,5 @@
 space, but interacts with the level as in the actual game. Space will advance the snake one step, useful for testing arrows.
 Replays can be stored of progress on a run to date, which is useful for debugging levels.
 
-Levels can be saved, and uploaded to be shared with other people. Shared levels
-only become available after the levels have been curated by the Mamba team.
+Levels can be saved, and uploaded to be shared with other people. Shared levels only become available after the levels have
+been curated by the Mamba team.  Be careful when choosing the file name to avoid overwriting any previously saved levels.
--- a/mamba/habitats/editor.py	Tue Nov 20 23:37:46 2012 +0200
+++ b/mamba/habitats/editor.py	Wed Nov 21 13:38:01 2012 +0200
@@ -289,7 +289,7 @@
         return True
 
     def show_help(self, ev, widget):
-        message = MessageBox((20, 20), self.help_msg, color="black",
+        message = MessageBox((5, 5), self.help_msg, color="black",
                              fontsize=12)
         self.display_dialog(message)
         return True