From c7407bf2549e3b5011e1564b1e0e167276431864 Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Sat, 17 May 2014 12:27:34 +0200 Subject: [PATCH] Add debug options for starting straight at a particular deck or save game (currently they do nothing). --- naja/options.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/naja/options.py b/naja/options.py index 5c80b1b..6fe7566 100644 --- a/naja/options.py +++ b/naja/options.py @@ -38,6 +38,10 @@ def parse_args(args): 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) -- 2.34.1