From 11f68f1e89dfb15c8f16f6ab3cbe6d00cdd4e026 Mon Sep 17 00:00:00 2001 From: Ben Date: Fri, 5 Jun 2020 22:48:21 +0100 Subject: [PATCH] Increase max-coins-per-minute default to 800 --- bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.py b/bootstrap.py index 90bc1e5..5d927c7 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -93,7 +93,7 @@ if __name__ == '__main__': games_group.add_argument('--max-coins', action='store', default=1000000, type=int, help='Max coins earnable') games_group.add_argument('--max-coins-per-min', action='store', - default=500, type=int, help='Max coins per min') + default=800, type=int, help='Max coins per min') client_group = parser.add_argument_group('client') client_mode = client_group.add_mutually_exclusive_group()