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

23 lines
431 B
Python

import glob
def handle(userToken, packetData):
# Get usertoken data
userID = userToken.userID
# Get match ID and match object
matchID = userToken.matchID
# Make sure we are in a match
if matchID == -1:
return
# Make sure the match exists
if matchID not in glob.matches.matches:
return
# The match exists, get object
match = glob.matches.matches[matchID]
# Set our match complete
match.playerCompleted(userID)