update botconfig.py example to reflect recent changes
This commit is contained in:
parent
945190a6e1
commit
6b2ec13fb6
@ -19,6 +19,9 @@ DENY = {}
|
|||||||
import argparse
|
import argparse
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument('--debug', action='store_true')
|
parser.add_argument('--debug', action='store_true')
|
||||||
|
parser.add_argument('--sabotage', action='store_true')
|
||||||
|
|
||||||
args = parser.parse_args()
|
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…
x
Reference in New Issue
Block a user