pep.py/events/changeSlotEvent.py

14 lines
344 B
Python
Raw Permalink Normal View History

2016-05-18 17:12:46 +00:00
from constants import clientPackets
from objects import glob
2016-04-19 17:40:59 +00:00
def handle(userToken, packetData):
# Get usertoken data
userID = userToken.userID
# Read packet data
packetData = clientPackets.changeSlot(packetData)
with glob.matches.matches[userToken.matchID] as match:
# Change slot
match.userChangeSlot(userID, packetData["slotID"])