Skip to content

Commit 8d4623f

Browse files
authored
"Enneacraft - Atil.SPIA" fix
Missing face-down check.
1 parent 2eef7b2 commit 8d4623f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

official/c71801447.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function s.chainlimop(e,tp,eg,ep,ev,re,r,rp)
111111
end
112112
end
113113
function s.negcon(e,tp,eg,ep,ev,re,r,rp)
114-
if not (ep==1-tp and Duel.GetCurrentChain(true)>=3) then return false end
114+
if not (e:GetHandler():IsFacedown() and ep==1-tp and Duel.GetCurrentChain(true)>=3) then return false end
115115
for i=1,ev do
116116
local te,tgp=Duel.GetChainInfo(i,CHAININFO_TRIGGERING_EFFECT,CHAININFO_TRIGGERING_PLAYER)
117117
if te and tgp==1-tp and Duel.IsChainNegatable(i) then
@@ -181,4 +181,4 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
181181
if #g>0 then
182182
Duel.SpecialSummon(g,0,tp,tp,false,false,POS_FACEDOWN_DEFENSE)
183183
end
184-
end
184+
end

0 commit comments

Comments
 (0)