From 937e159f80f02bff02b218afa6c88438b0343f5f Mon Sep 17 00:00:00 2001 From: hch <305670599@qq.com> Date: 星期五, 15 三月 2019 10:58:13 +0800 Subject: [PATCH] 1111 修改任务接口对bind的判断 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/QuestRunner.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/QuestRunner.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/QuestRunner.py index 2ab2b6f..2d1290c 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/QuestRunner.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/QuestRunner.py @@ -3755,8 +3755,8 @@ itemStarLV = GameWorld.ToIntDef(curActionNode.GetAttribute("starLV"), 0) #物品是否绑定 - bind = True if curActionNode.GetAttribute("bind") else False - + bind = True if GameWorld.ToIntDef(curActionNode.GetAttribute("bind")) else False + #物品是否套装化 isSuite = True if curActionNode.GetAttribute("suite") else False -- Gitblit v1.8.0