2016-05-18 17:12:46 +00:00
|
|
|
from objects import glob
|
2016-04-19 17:40:59 +00:00
|
|
|
|
|
|
|
def handle(userToken, _):
|
|
|
|
# Get usertoken data
|
|
|
|
userID = userToken.userID
|
|
|
|
|
|
|
|
# Make sure the match exists
|
|
|
|
matchID = userToken.matchID
|
|
|
|
if matchID not in glob.matches.matches:
|
|
|
|
return
|
|
|
|
|
2017-12-21 17:58:56 +00:00
|
|
|
with glob.matches.matches[matchID] as match:
|
|
|
|
# Get our slotID and change ready status
|
|
|
|
slotID = match.getUserSlotID(userID)
|
|
|
|
if slotID is not None:
|
|
|
|
match.toggleSlotReady(slotID)
|
2017-09-09 10:25:51 +00:00
|
|
|
|
2017-12-21 17:58:56 +00:00
|
|
|
# If this is a tournament match, we should send the current status of ready
|
|
|
|
# players.
|
|
|
|
if match.isTourney:
|
|
|
|
match.sendReadyStatus()
|