13 lines
420 B
Python
13 lines
420 B
Python
from common.log import logUtils as log
|
|
from common.ripple import userUtils
|
|
from constants import clientPackets
|
|
|
|
|
|
def handle(userToken, packetData):
|
|
# Friend remove packet
|
|
packetData = clientPackets.addRemoveFriend(packetData)
|
|
userUtils.removeFriend(userToken.userID, packetData["friendID"])
|
|
|
|
# Console output
|
|
log.info("{} have removed {} from their friends".format(userToken.username, str(packetData["friendID"])))
|