Skip to content

Commit a510215

Browse files
committed
"-Ib'al-Hecahands" update
Fixed a bug where it would be able to summon the destroyed card even if it was no longer a monster after it was destroyed
1 parent ad02470 commit a510215

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

official/c93294363.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ function s.target(e,tp,eg,ep,ev,re,r,rp,chk)
3131
end
3232
function s.operation(e,tp,eg,ep,ev,re,r,rp)
3333
local rc=re:GetHandler()
34-
if Duel.NegateActivation(ev) and rc:IsRelateToEffect(re) and Duel.Destroy(eg,REASON_EFFECT)>0 and not rc:IsLocation(LOCATION_HAND|LOCATION_DECK) and aux.nvfilter(rc)
35-
and rc:IsCanBeSpecialSummoned(e,0,tp,false,false) then
34+
if Duel.NegateActivation(ev) and rc:IsRelateToEffect(re) and Duel.Destroy(eg,REASON_EFFECT)>0 and not rc:IsLocation(LOCATION_HAND|LOCATION_DECK)
35+
and aux.nvfilter(rc) and rc:IsMonster() and rc:IsCanBeSpecialSummoned(e,0,tp,false,false) then
3636
if rc:IsLocation(LOCATION_EXTRA) and Duel.GetLocationCountFromEx(tp,tp,nil,rc)<=0 then
3737
return
3838
elseif not rc:IsLocation(LOCATION_EXTRA) and Duel.GetLocationCount(tp,LOCATION_MZONE)<=0 then

0 commit comments

Comments
 (0)