Commit 0d79f51c authored by POLYMER's avatar POLYMER

fix

parent 38cdc417
...@@ -24,6 +24,7 @@ function c22050350.initial_effect(c) ...@@ -24,6 +24,7 @@ function c22050350.initial_effect(c)
e2:SetCost(c22050350.descost1) e2:SetCost(c22050350.descost1)
e2:SetTarget(c22050350.target) e2:SetTarget(c22050350.target)
e2:SetOperation(c22050350.operation) e2:SetOperation(c22050350.operation)
c:RegisterEffect(e2)
--ad --ad
local e3=Effect.CreateEffect(c) local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(22050350,1)) e3:SetDescription(aux.Stringid(22050350,1))
......
...@@ -98,7 +98,7 @@ function c9911710.filter(c,i) ...@@ -98,7 +98,7 @@ function c9911710.filter(c,i)
return c:IsRelateToChain() and c:IsLocation(LOCATION_MZONE) and c:IsFaceup() and aux.GetColumn(c)==i return c:IsRelateToChain() and c:IsLocation(LOCATION_MZONE) and c:IsFaceup() and aux.GetColumn(c)==i
end end
function c9911710.tgfilter(c,col) function c9911710.tgfilter(c,col)
return bit.band(col,2^aux.GetColumn(c))~=0 and c:IsAbleToGrave() return not c:IsLocation(LOCATION_FZONE) and bit.band(col,2^aux.GetColumn(c))~=0 and c:IsAbleToGrave()
end end
function c9911710.tgfilter2(g) function c9911710.tgfilter2(g)
for c in aux.Next(g) do for c in aux.Next(g) do
......
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