2016-05-18 17:12:46 +00:00
|
|
|
from objects import glob
|
2016-04-19 17:40:59 +00:00
|
|
|
|
2016-12-26 09:33:05 +00:00
|
|
|
def handle(userToken, _, has):
|
2016-04-19 17:40:59 +00: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
|
|
|
|
|
|
|
|
# Set has beatmap/no beatmap
|
2017-12-21 17:58:56 +00:00
|
|
|
with glob.matches.matches[matchID] as match:
|
|
|
|
match.userHasBeatmap(userID, has)
|