pep.py/events/matchSkipEvent.py

21 lines
387 B
Python
Raw Normal View History

2016-05-18 19:12:46 +02:00
from objects import glob
2016-04-19 19:40:59 +02:00
2016-12-26 10:33:05 +01:00
def handle(userToken, _):
2016-04-19 19:40:59 +02:00
# 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
# Skip
with glob.matches.matches[matchID] as match:
match.playerSkip(userID)