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