From a3f9f3dda9fd5b610ea740ba6e0a55e85f865950 Mon Sep 17 00:00:00 2001 From: Jimmy Cao Date: Wed, 28 Dec 2011 17:51:53 -0600 Subject: [PATCH] update botconfig.py example to reflect recent changes --- botconfig.py.example | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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"