Skip to content

Commit 59d8bef

Browse files
committed
"Wind Unicorn Parallel, the Dracoslayer" fix
Fixed a bug where it would not be able to target some Pendulum Monster cards properly
1 parent f71fe9f commit 59d8bef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

official/c39016067.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ function s.effop(e,tp,eg,ep,ev,re,r,rp)
8383
end
8484
end
8585
function s.rthfilter(c,e,tp)
86-
return ((c:IsType(TYPE_PENDULUM) and c:IsFaceup() and c:IsControler(tp)) or c:IsControler(1-tp))
86+
return ((c:IsOriginalType(TYPE_PENDULUM) and c:IsFaceup() and c:IsControler(tp)) or c:IsControler(1-tp))
8787
and c:IsCanBeEffectTarget(e) and c:IsAbleToHand()
8888
end
8989
function s.rthtg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)

0 commit comments

Comments
 (0)