2016-05-18 17:12:46 +00:00
|
|
|
from constants import clientPackets
|
|
|
|
from objects import glob
|
2016-04-19 17:40:59 +00:00
|
|
|
|
|
|
|
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]
|
|
|
|
|
2016-09-02 10:41:19 +00:00
|
|
|
# Host check
|
|
|
|
if userToken.userID != match.hostUserID:
|
|
|
|
return
|
|
|
|
|
2016-04-19 17:40:59 +00:00
|
|
|
# Update match password
|
|
|
|
match.changePassword(packetData["matchPassword"])
|