Commit a0dacc5b authored by Steeldarkeagel's avatar Steeldarkeagel

Update c94243005.lua

Fix: Will no longer gain Counters if a Token is removed from the Field by a "Remove from Play" effect.
parent 4fc5104f
...@@ -36,7 +36,7 @@ function c94243005.initial_effect(c) ...@@ -36,7 +36,7 @@ function c94243005.initial_effect(c)
c:RegisterEffect(e4) c:RegisterEffect(e4)
end end
function c94243005.ctfilter(c) function c94243005.ctfilter(c)
return c:IsFaceup() and c:IsType(TYPE_MONSTER) and not c:IsPreviousLocation(0x80+LOCATION_SZONE) return c:IsFaceup() and c:IsType(TYPE_MONSTER) and not c:IsPreviousLocation(0x80+LOCATION_SZONE) and not c:IsType(TYPE_TOKEN)
end end
function c94243005.ctop(e,tp,eg,ep,ev,re,r,rp) function c94243005.ctop(e,tp,eg,ep,ev,re,r,rp)
local ct=eg:FilterCount(c94243005.ctfilter,nil) local ct=eg:FilterCount(c94243005.ctfilter,nil)
......
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