From: Simon Cross Date: Sat, 17 May 2014 10:27:34 +0000 (+0200) Subject: Add debug options for starting straight at a particular deck or save game (currently... X-Git-Tag: 0.1~129 X-Git-Url: https://git.ctpug.org.za/?a=commitdiff_plain;h=c7407bf2549e3b5011e1564b1e0e167276431864;p=naja.git Add debug options for starting straight at a particular deck or save game (currently they do nothing). --- 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)