pep.py/changeSlotEvent.py
2016-04-19 19:40:59 +02:00

19 lines
388 B
Python

import clientPackets
import glob
import consoleHelper
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"])