19 lines
472 B
Python
19 lines
472 B
Python
from constants import serverPackets
|
|
from objects import glob
|
|
from helpers import logHelper as log
|
|
|
|
def handle(userToken, _):
|
|
# Get userToken data
|
|
username = userToken.username
|
|
userID = userToken.userID
|
|
|
|
# Add user to users in lobby
|
|
glob.matches.lobbyUserJoin(userID)
|
|
|
|
# Send matches data
|
|
for key, _ in glob.matches.matches.items():
|
|
userToken.enqueue(serverPackets.createMatch(key))
|
|
|
|
# Console output
|
|
log.info("{} has joined multiplayer lobby".format(username))
|