From 4ef8a162160e3028d4a8382304382872c79a44f9 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期四, 11 四月 2019 20:40:02 +0800
Subject: [PATCH] 6494 子 【开发】【2.0】战斗公式增加普攻伤害和技能伤害 / 【后端】【2.0】战斗公式增加普攻伤害和技能伤害属性

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerViewCacheTube.py |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerViewCacheTube.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerViewCacheTube.py
index d61c9c3..4d3572c 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerViewCacheTube.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerViewCacheTube.py
@@ -89,7 +89,6 @@
     curPlayerPropDict["LV"] = curPlayer.GetLV()
     curPlayerPropDict["RealmLV"] = curPlayer.GetOfficialRank()
     curPlayerPropDict["Job"] = curPlayer.GetJob()
-    curPlayerPropDict["JobRank"] = PlayerControl.GetJobRank(curPlayer)
     curPlayerPropDict["VIPLV"] = curPlayer.GetVIPLv()
     curPlayerPropDict["Name"] = curPlayer.GetPlayerName()
     curPlayerPropDict["FamilyID"] = curPlayer.GetFamilyID()
@@ -296,8 +295,8 @@
         itemDict = {}
         itemDict["ItemIndex"] = curEquip.GetItemPlaceIndex()
         itemDict["ItemID"] = curEquip.GetItemTypeID()
-        itemDict["IsBind"] = int(curEquip.GetIsBind())
-        itemDict["IsSuite"] = int(curEquip.GetIsSuite())
+        itemDict["IsAuctionItem"] = int(ItemControler.GetIsAuctionItem(curEquip))
+        #itemDict["IsSuite"] = int(curEquip.GetIsSuite())
         userData = curEquip.GetUserData()
         if userData and userData != "{}":
             itemDict["UserData"] = userData

--
Gitblit v1.8.0