From f778e109783cf44c6bf6b1603ae1668629f1b77f Mon Sep 17 00:00:00 2001 From: hch <305670599@qq.com> Date: 星期四, 24 一月 2019 19:26:15 +0800 Subject: [PATCH] 5735 【后端】【1.5】仙玉返还 --- ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_QDFLDoubleBill.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_QDFLDoubleBill.py b/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_QDFLDoubleBill.py index ea817e0..8b33982 100644 --- a/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_QDFLDoubleBill.py +++ b/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_QDFLDoubleBill.py @@ -44,7 +44,7 @@ queryType = ChConfig.queryType_sqtPlayerByAccID tagPlayer = playerManager.FindPlayerByAccID(accID) - if not tagPlayer: + if not tagPlayer or not tagPlayer.GetInitOK(): # 玩家不在线,先记录,等玩家上线后处理 GameWorld.Log("玩家离线,暂存渠道测试返利 %s, 仙玉%s"%(accID, gold)) GMShell.AddOfflinePlayerGMTInfo(orderId, queryType, accID, gmCmdDict) -- Gitblit v1.8.0