Skip to content

Commit 9af4a79

Browse files
authored
"Otoshidamashi" fix
Fixed a bug where it would not place a counter if the monster was not sent from its controller's field to the opponent's GY
1 parent 2669b87 commit 9af4a79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

official/c14957440.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function s.atklm(e)
3535
return Duel.IsExistingMatchingCard(s.atkfilter,e:GetHandlerPlayer(),LOCATION_MZONE,0,1,nil)
3636
end
3737
function s.cfilter(c,tp)
38-
return c:IsPreviousControler(1-tp) and c:IsMonster() and c:IsPreviousLocation(LOCATION_MZONE)
38+
return c:IsControler(1-tp) and c:IsMonster() and c:IsPreviousLocation(LOCATION_MZONE)
3939
end
4040
function s.tkcon(e,tp,eg,ep,ev,re,r,rp)
4141
return eg:IsExists(s.cfilter,1,nil,tp)
@@ -81,4 +81,4 @@ function s.tkop(e,tp,eg,ep,ev,re,r,rp)
8181
end
8282
Duel.SpecialSummonComplete()
8383
end
84-
end
84+
end

0 commit comments

Comments
 (0)