Commit 0f47be6f authored by POLYMER's avatar POLYMER

fix

parent 6598940f
...@@ -56,7 +56,7 @@ end ...@@ -56,7 +56,7 @@ end
function s.negop(e,tp,eg,ep,ev,re,r,rp) function s.negop(e,tp,eg,ep,ev,re,r,rp)
-- Condition: Opponent's Normal or Quick-Play Spell -- Condition: Opponent's Normal or Quick-Play Spell
if rp==tp or not re:IsHasType(EFFECT_TYPE_ACTIVATE) then return end if rp==tp or not re:IsHasType(EFFECT_TYPE_ACTIVATE) then return end
if not (re:IsActiveType(TYPE_SPELL) and (re:IsActiveType(TYPE_NORMAL) or re:IsActiveType(TYPE_QUICKPLAY))) then return end if not (re:GetActiveType()==TYPE_SPELL or re:IsActiveType(TYPE_QUICKPLAY)) then return end
local g=Duel.GetMatchingGroup(s.desfilter,tp,0,LOCATION_MZONE,nil) local g=Duel.GetMatchingGroup(s.desfilter,tp,0,LOCATION_MZONE,nil)
-- Logic: Opponent can destroy 1 valid monster. If not, negate. -- Logic: Opponent can destroy 1 valid monster. If not, negate.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment