function ChainMaxxC()
for i=1,Duel.GetCurrentChain() do
if Duel.GetOperationInfo(Duel.GetCurrentChain(), CATEGORY_SPECIALSUMMON)
and Duel.GetChainInfo(Duel.GetCurrentChain()_, CHAININFO_TRIGGERING_PLAYER)~=player_ai
then
return true
end
end
return false
end
Fix
function ChainMaxxC()
for i=1,Duel.GetCurrentChain() do
if Duel.GetOperationInfo(i, CATEGORY_SPECIAL_SUMMON)
and Duel.GetChainInfo(i, CHAININFO_TRIGGERING_PLAYER)~=player_ai
then
return true
end
end
return false
end
Hi Snarkie, i wanna contribute a little bit:
Issue
function ChainMaxxC() for i=1,Duel.GetCurrentChain() do if Duel.GetOperationInfo(
Duel.GetCurrentChain(), CATEGORY_SPECIALSUMMON) and Duel.GetChainInfo(Duel.GetCurrentChain()_, CHAININFO_TRIGGERING_PLAYER)~=player_ai then return true end end return false endFix
function ChainMaxxC() for i=1,Duel.GetCurrentChain() do if Duel.GetOperationInfo(i, CATEGORY_SPECIAL_SUMMON) and Duel.GetChainInfo(i, CHAININFO_TRIGGERING_PLAYER)~=player_ai then return true end end return false end
I guess this don't needs a "pull request" :)