Browse Source

update botconfig.py example to reflect recent changes

master
Jimmy Cao 13 years ago
parent
commit
a3f9f3dda9
  1. 5
      botconfig.py.example

5
botconfig.py.example

@ -19,6 +19,9 @@ DENY = {} @@ -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
DEBUG_MODE = args.debug if not DISABLE_DEBUG_MODE else False
DEFAULT_MODULE = "sabotage" if args.sabotage else "wolfgame"

Loading…
Cancel
Save