remove use of --slow-robot

breaks things for reasons I need to debug later
This commit is contained in:
Eric House 2020-01-29 20:39:14 -08:00
parent 3f5b9f5992
commit 752e3ff3e8

View file

@ -424,7 +424,12 @@ def build_cmds(args):
if args.UNDO_PCT > 0:
PARAMS += ['--undo-pct', args.UNDO_PCT]
PARAMS += [ '--game-dict', DICT]
PARAMS += ['--slow-robot', '1:3', '--skip-confirm']
# Removing --slow-robot for now. With it on (and
# successfully passed through to the curses client, which
# hasn't always been happening), 20% of games
# stall. PENDING...
# PARAMS += ['--slow-robot', '1:3']
PARAMS += ['--skip-confirm']
PARAMS += ['--db', DB]
PARAMS += ['--drop-nth-packet', g_DROP_N]