update botconfig.py example to reflect recent changes

This commit is contained in:
Jimmy Cao 2011-12-28 17:51:53 -06:00
parent 945190a6e1
commit 6b2ec13fb6

View File

@ -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
DEFAULT_MODULE = "sabotage" if args.sabotage else "wolfgame"