Commit 943c7f3f authored by wind2009's avatar wind2009 Committed by GitHub

Fix エクシーズ・アーマー・トルピード (#2278)

parent 28addcd0
......@@ -70,7 +70,7 @@ function s.drawoperation(e,tp,eg,ep,ev,re,r,rp)
end
function s.actcon(e)
local tc=e:GetHandler():GetEquipTarget()
return Duel.GetAttacker()==tc or Duel.GetAttackTarget()==tc
return tc~=nil and (Duel.GetAttacker()==tc or Duel.GetAttackTarget()==tc)
end
function s.disfilter(c)
return aux.NegateAnyFilter(c) and c:IsType(TYPE_MONSTER) and c:IsFaceup()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment