pep.py/changeMatchPasswordEvent.py

18 lines
432 B
Python
Raw Normal View History

2016-04-19 17:40:59 +00:00
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"])