We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fad6cf7 commit 5d126d6Copy full SHA for 5d126d6
unofficial/c511000697.lua
@@ -21,7 +21,9 @@ function s.initial_effect(c)
21
end
22
function s.atkcon(e)
23
local ec=e:GetHandler():GetEquipTarget()
24
- return ec and (Duel.GetAttacker()==ec or Duel.GetAttackTarget()==ec)
+ local ac=Duel.GetAttacker()
25
+ local dc=Duel.GetAttackTarget()
26
+ return ec and ac~=nil and dc~nil and (ac==ec or dc==ec)
27
28
function s.atkval(e,c)
29
local eq=e:GetHandler():GetEquipTarget()
0 commit comments