hch
2019-03-15 937e159f80f02bff02b218afa6c88438b0343f5f
1111 修改任务接口对bind的判断
1个文件已修改
4 ■■■■ 已修改文件
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/QuestRunner.py 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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