pep.py/changeSlotEvent.py

19 lines
416 B
Python

import clientPackets
import glob
from helpers import consoleHelper
from constants import bcolors
def handle(userToken, packetData):
# Get usertoken data
userID = userToken.userID
username = userToken.username
# Read packet data
packetData = clientPackets.changeSlot(packetData)
# Get match
match = glob.matches.matches[userToken.matchID]
# Change slot
match.userChangeSlot(userID, packetData["slotID"])