double-arrow selector
[naja.git] / naja / options.py
index e280b67773b9e0703cbf9f47fa6b7bfeb9cc60a3..6fe75660987b364ab138dc5144156123c72d9b3c 100644 (file)
@@ -35,13 +35,19 @@ def parse_args(args):
     if options.debug:
         parser.add_option('--initial-bits', type=int,
                           help='Initial player bits')
+        parser.add_option('--cheat-enabled', default=False,
+                          action='store_true',
+                          help='For those too lazy to type the KONAMI code')
+        parser.add_option('--deck', default=None,
+                          help='Start with a new game for a specific deck')
+        parser.add_option('--load', default=None,
+                          help='Start with a specific save game loaded')
 
     opts, _ = parser.parse_args(args)
 
     for k in DEFAULTS:
         if getattr(opts, k, None) is not None:
             options[k] = getattr(opts, k)
-    options['save_location'] = opts.save_location
 
 
 def _get_default_save_location():