pep.py/events/changeSlotEvent.py

16 lines
349 B
Python

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