pep.py/changeSlotEvent.py

19 lines
416 B
Python
Raw Normal View History

2016-04-19 17:40:59 +00:00
import clientPackets
import glob
from helpers import consoleHelper
from constants import bcolors
2016-04-19 17:40:59 +00:00
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"])