pep.py/events/changeSlotEvent.py
2016-05-18 19:12:46 +02:00

19 lines
444 B
Python

from constants import clientPackets
from objects 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"])