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

18 lines
432 B
Python

import clientPackets
import glob
def handle(userToken, packetData):
# Read packet data. Same structure as changeMatchSettings
packetData = clientPackets.changeMatchSettings(packetData)
# Make sure the match exists
matchID = userToken.matchID
if matchID not in glob.matches.matches:
return
# Get our match
match = glob.matches.matches[matchID]
# Update match password
match.changePassword(packetData["matchPassword"])