11 lines
381 B
Python
11 lines
381 B
Python
from constants import clientPackets
|
|
from objects import glob
|
|
from helpers import chatHelper as chat
|
|
|
|
def handle(userToken, packetData):
|
|
packetData = clientPackets.tournamentLeaveMatchChannel(packetData)
|
|
matchID = packetData["matchID"]
|
|
if matchID not in glob.matches.matches:
|
|
return
|
|
chat.partChannel(token=userToken, channel="#multi_{}".format(matchID))
|
|
userToken.matchID = 0 |