Commit d30ba3b7 authored by mallu11's avatar mallu11 Committed by GitHub

fix Fullmetalfoes Alkahest and Magistus Invocation (#2041)

parent fb8e7f30
...@@ -12,7 +12,7 @@ function c34933456.initial_effect(c) ...@@ -12,7 +12,7 @@ function c34933456.initial_effect(c)
end end
function c34933456.mttg(e,c) function c34933456.mttg(e,c)
local tc=c:GetEquipTarget() local tc=c:GetEquipTarget()
return tc and tc:IsSetCard(0x150) return tc and tc:IsSetCard(0x150) and c:GetOriginalType()&TYPE_MONSTER~=0
end end
function c34933456.mtval(e,c) function c34933456.mtval(e,c)
if not c then return false end if not c then return false end
......
...@@ -76,7 +76,7 @@ function c77693536.eqlimit(e,c) ...@@ -76,7 +76,7 @@ function c77693536.eqlimit(e,c)
return e:GetOwner()==c return e:GetOwner()==c
end end
function c77693536.mttg(e,c) function c77693536.mttg(e,c)
return c:GetEquipTarget()==e:GetHandler() return c:GetEquipTarget()==e:GetHandler() and c:GetOriginalType()&TYPE_MONSTER~=0
end end
function c77693536.mtval(e,c) function c77693536.mtval(e,c)
if not c then return false end if not c then return false end
......
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