From be02136a1b2e6063742d5b6524b5d11f6fdec059 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Wed, 11 Nov 2020 12:53:53 +0100 Subject: [PATCH] revert QUSB2SNES port change (seems it sometimes doesn't host on this port and then things break) --- MultiClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultiClient.py b/MultiClient.py index 914712bd..dfd82629 100644 --- a/MultiClient.py +++ b/MultiClient.py @@ -1351,7 +1351,7 @@ async def main(): parser = argparse.ArgumentParser() parser.add_argument('diff_file', default="", type=str, nargs="?", help='Path to a Berserker Multiworld Binary Patch file') - parser.add_argument('--snes', default='localhost:23070', help='Address of the QUsb2snes server.') + parser.add_argument('--snes', default='localhost:8080', help='Address of the QUsb2snes server.') parser.add_argument('--connect', default=None, help='Address of the multiworld host.') parser.add_argument('--password', default=None, help='Password of the multiworld host.') parser.add_argument('--loglevel', default='info', choices=['debug', 'info', 'warning', 'error', 'critical'])