8 lines
237 B
Python
8 lines
237 B
Python
|
from constants import serverPackets
|
||
|
from helpers import logHelper as log
|
||
|
|
||
|
def handle(userToken, packetData):
|
||
|
# Update cache and send new stats
|
||
|
userToken.updateCachedStats()
|
||
|
userToken.enqueue(serverPackets.userStats(userToken.userID))
|