ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/Hero.py
@@ -157,8 +157,10 @@
def __oneKeyLineup(curPlayer, msgList):
    ## 阵容上阵: Hero f 阵容ID [武将ID ...]
    lineupID = msgList[1] if len(msgList) > 1 else 0
    heroIDList = list(set(msgList[2:])) # 去重,单阵容武将ID不能重复
    heroIDList = []
    for heroID in msgList[2:]: # 去重,单阵容武将ID不能重复
        if heroID not in heroIDList:
            heroIDList.append(heroID)
    if lineupID not in ShareDefine.LineupList:
        GameWorld.DebugAnswer(curPlayer, "不存在该阵容: %s" % lineupID)
        return