ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/GameSkills/SkillCommon.py
@@ -2006,7 +2006,15 @@
    return attacker.GetDictByKey("UsePassive")
def SetUsingPassiveSkill(attacker, value):
    return attacker.SetDict("UsePassive", value)
    if value > 0:
        attacker.SetDict("UsePassive", attacker.GetDictByKey("UsePassive") + 1)
    else:
        attacker.SetDict("UsePassive", max(0, attacker.GetDictByKey("UsePassive") - 1))
    return
def ClearUsingPassiveSkill(attacker):
    attacker.SetDict("UsePassive", 0)
    return
def CheckPlayerAtkInterval(curPlayer, skillTypeID, tick):
    ''' 验证是否基本攻击间隔 '''