ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerDBOper.py
@@ -27,7 +27,7 @@
import IPY_GameServer
import ReadChConfig
import base64
import json
import cPickle
#[isBase64, gbk]
EncodingList = ReadChConfig.GetEvalChConfig("EncodingTex")
@@ -153,7 +153,7 @@
    sendDict, callFunc, extendValueList = g_dbCommandList.pop(0)
    
    #0:不返回,1:DB返回信息到GameServer
    GameWorld.GetGameWorld().SendDBOper(1, json.dumps(sendDict, ensure_ascii=False))
    GameWorld.GetGameWorld().SendDBOper(1, cPickle.dumps(sendDict, 2))
    GameWorld.Log("send dbcommand:%s"%sendDict)
    
    g_proccessCmdInfo = [callFunc, extendValueList]