Skip to content

Commit aec5646

Browse files
authored
Fix "D/D/D/D Great Dimension King Arc Crisis"
It should only be able to banish cards from the Monster Zone when it is special summoned by its own procedure
1 parent c474e15 commit aec5646

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

official/c71398055.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ function s.matfilter(typ)
6767
end
6868
end
6969
function s.contactfil(tp)
70-
local loc=LOCATION_ONFIELD|LOCATION_GRAVE
71-
if Duel.IsPlayerAffectedByEffect(tp,CARD_SPIRIT_ELIMINATION) then loc=LOCATION_ONFIELD end
70+
local loc=LOCATION_MZONE|LOCATION_GRAVE
71+
if Duel.IsPlayerAffectedByEffect(tp,CARD_SPIRIT_ELIMINATION) then loc=LOCATION_MZONE end
7272
return Duel.GetMatchingGroup(Card.IsAbleToRemoveAsCost,tp,loc,0,nil)
7373
end
7474
function s.contactop(g)
@@ -168,4 +168,4 @@ function s.penop(e,tp,eg,ep,ev,re,r,rp)
168168
if c:IsRelateToEffect(e) then
169169
Duel.MoveToField(c,tp,tp,LOCATION_PZONE,POS_FACEUP,true)
170170
end
171-
end
171+
end

0 commit comments

Comments
 (0)