23 lines
448 B
Python
23 lines
448 B
Python
from objects import glob
|
|
|
|
def handle(userToken, _, has):
|
|
# 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 has beatmap/no beatmap
|
|
match.userHasBeatmap(userID, has)
|