revert QUSB2SNES port change (seems it sometimes doesn't host on this port and then things break)

This commit is contained in:
Fabian Dill 2020-11-11 12:53:53 +01:00
parent dc8a7133a3
commit be02136a1b
1 changed files with 1 additions and 1 deletions

View File

@ -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'])