mirror of
https://github.com/jiojciojsioe3/a3cjroijsiojiorj.git
synced 2024-11-15 07:21:50 +08:00
allow multiplayer port to be changed
This commit is contained in:
parent
29176e896e
commit
f70cbe44b3
@ -4,6 +4,7 @@ import asyncio
|
||||
import websockets
|
||||
import json
|
||||
import random
|
||||
import sys
|
||||
|
||||
server_status = {
|
||||
"waiting": {},
|
||||
@ -314,7 +315,9 @@ async def connection(ws, path):
|
||||
elif user["action"] == "invite" and user["session"] in server_status["invites"]:
|
||||
del server_status["invites"][user["session"]]
|
||||
|
||||
port = int(sys.argv[1]) if len(sys.argv) > 1 else 34802
|
||||
print('Starting server on port %d' % port)
|
||||
asyncio.get_event_loop().run_until_complete(
|
||||
websockets.serve(connection, "localhost", 34802)
|
||||
websockets.serve(connection, "localhost", port)
|
||||
)
|
||||
asyncio.get_event_loop().run_forever()
|
||||
|
Loading…
Reference in New Issue
Block a user