[战斗]=====================技能命中添加判断

wangzhenxing 2023-11-13 14:07:02 +08:00
parent f49e326c83
commit cfe5e05df6
1 changed files with 3 additions and 0 deletions

View File

@ -158,6 +158,9 @@ end
-- 判断是否命中
function Skill:CheckTargetIsHit(role)
if role==nil then
return false
end
return self.effectCaster:CheckTargetIsHit(role)
end