MultiClient: allow different protocols if a prefix is present
This commit is contained in:
parent
28e7819fab
commit
1be0d62d4f
|
@ -543,7 +543,7 @@ async def server_loop(ctx : Context):
|
||||||
print('Enter multiworld server address')
|
print('Enter multiworld server address')
|
||||||
ctx.server_address = await console_input(ctx)
|
ctx.server_address = await console_input(ctx)
|
||||||
|
|
||||||
address = 'ws://' + ctx.server_address
|
address = f"ws://{ctx.server_address}" if "://" not in ctx.server_address else ctx.server_address
|
||||||
|
|
||||||
print('Connecting to multiworld server at %s' % address)
|
print('Connecting to multiworld server at %s' % address)
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue