Skip to content

Commit 49f149e

Browse files
committed
"Flux Ochsenfeld" fix
Fixed a bug in which it would be possible to target cards that cannot be returned to the hand
1 parent 3c6201d commit 49f149e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

official/c21861412.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
5555
end
5656
end
5757
function s.rthfilter(c,opp)
58-
return (c:IsAttribute(ATTRIBUTE_EARTH) and c:IsFaceup()) or c:IsControler(opp)
58+
return c:IsAbleToHand() and (c:IsAttribute(ATTRIBUTE_EARTH) and c:IsFaceup()) or c:IsControler(opp)
5959
end
6060
function s.rthtg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
6161
if chkc then return false end

0 commit comments

Comments
 (0)