From 2a6bacedea0c4d6d49efcca5d0c56b7aa6e33adc Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期一, 19 十一月 2018 14:45:39 +0800
Subject: [PATCH] 2397 【BUG】【1.2】【1.3】符印背包满的情况下合成符印,扣除符印融合石没合成符印,双属性符印升级后分解没返还符印融合石

---
 ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerGeTui.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerGeTui.py b/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerGeTui.py
index 12b15b4..db39caa 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerGeTui.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerGeTui.py
@@ -281,7 +281,7 @@
             # 判断BOSS剩余次数, 避免通知频繁
             continue
         
-        appID = GameWorld.GetPlayerPlatform(cacheDict.get("AppID", ""))
+        appID = cacheDict.get("AppID", "")
         if appID not in appIDDict:
             appIDDict[appID] = []
             
@@ -314,7 +314,7 @@
         return
     
     showStr = GameWorld.GbkToCode(IpyGameDataPY.GetFuncCfg("GeTuiOffLine", 3))%(tagPlayerName)    # 文字信息
-    GeTuiNotify({GameWorld.GetPlayerPlatform(cacheDict.get("AppID", "")):[[cacheDict.get("GeTuiClientID", ""), playerName]]}, showStr)
+    GeTuiNotify({cacheDict.get("AppID", ""):[[cacheDict.get("GeTuiClientID", ""), playerName]]}, showStr)
     return
 
 # 下线时,低级玩家没有离线时间的玩家提示, 上线清空

--
Gitblit v1.8.0