diff --git a/botconfig.py.example b/botconfig.py.example index 77159dd..a9f6ef7 100644 --- a/botconfig.py.example +++ b/botconfig.py.example @@ -19,6 +19,9 @@ DENY = {} import argparse parser = argparse.ArgumentParser() parser.add_argument('--debug', action='store_true') +parser.add_argument('--sabotage', action='store_true') args = parser.parse_args() -DEBUG_MODE = args.debug if not DISABLE_DEBUG_MODE else False \ No newline at end of file +DEBUG_MODE = args.debug if not DISABLE_DEBUG_MODE else False + +DEFAULT_MODULE = "sabotage" if args.sabotage else "wolfgame"