From 4440c4c4cdcfe8db174b9df9dab19e822a8aca57 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期六, 11 五月 2019 14:58:33 +0800
Subject: [PATCH] 6647 【2.0】【开发】1级登录不设置视野可见
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerAuctionHouse.py | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerAuctionHouse.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerAuctionHouse.py
index 7677daa..8ff7e12 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerAuctionHouse.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerAuctionHouse.py
@@ -42,7 +42,7 @@
curItem = playerPack.GetAt(itemIndex)
if curItem.IsEmpty():
return
- if not curItem.GetIsBind():
+ if not ItemControler.GetIsAuctionItem(curItem):
GameWorld.Log("非拍品,绑定无法上架!", playerID)
return
itemGUID = curItem.GetGUID()
@@ -127,7 +127,7 @@
curItem = playerPack.GetAt(itemIndex)
if curItem.IsEmpty():
return
- if not curItem.GetIsBind():
+ if not ItemControler.GetIsAuctionItem(curItem):
GameWorld.Log("非拍品,无法上架!", playerID)
return
curItemGUID = curItem.GetGUID()
@@ -184,7 +184,7 @@
if curPlayer and not familyID:
ItemCommon.DelItem(curPlayer, curItem, curItem.GetCount())
else:
- if not curItem.GetIsBind():
+ if not ItemControler.GetIsAuctionItem(curItem):
GameWorld.Log("非拍品,绑定无法上架!", playerID)
curItem.Clear()
continue
--
Gitblit v1.8.0